Uses of Interface
jakarta.faces.convert.Converter
-
Packages that use Converter Package Description jakarta.faces.application jakarta.faces.component jakarta.faces.convert -
-
Uses of Converter in jakarta.faces.application
Methods in jakarta.faces.application that return Converter Modifier and Type Method Description abstract Converter
Application. createConverter(Class<?> targetClass)
Instantiate and return a newConverter
instance of the class that has registered itself as capable of performing conversions for objects of the specified type.abstract Converter
Application. createConverter(String converterId)
Instantiate and return a newConverter
instance of the class specified by a previous call toaddConverter()
for the specified converter id.Converter
ApplicationWrapper. createConverter(Class<?> targetClass)
The default behavior of this method is to callApplication.createConverter(Class)
on the wrappedApplication
object.Converter
ApplicationWrapper. createConverter(String converterId)
The default behavior of this method is to callApplication.createConverter(String)
on the wrappedApplication
object. -
Uses of Converter in jakarta.faces.component
Methods in jakarta.faces.component that return Converter Modifier and Type Method Description Converter
UIOutput. getConverter()
Converter
ValueHolder. getConverter()
Return theConverter
(if any) that is registered for thisUIComponent
.Methods in jakarta.faces.component with parameters of type Converter Modifier and Type Method Description void
UIOutput. setConverter(Converter converter)
void
ValueHolder. setConverter(Converter converter)
Set theConverter
(if any) that is registered for thisUIComponent
. -
Uses of Converter in jakarta.faces.convert
Classes in jakarta.faces.convert that implement Converter Modifier and Type Class Description class
BigDecimalConverter
Converter
implementation forjava.math.BigDecimal
values.class
BigIntegerConverter
Converter
implementation forjava.math.BigInteger
values.class
BooleanConverter
Converter
implementation forjava.lang.Boolean
(and boolean primitive) values.class
ByteConverter
Converter
implementation forjava.lang.Byte
(and byte primitive) values.class
CharacterConverter
Converter
implementation forjava.lang.Character
(and char primitive) values.class
DateTimeConverter
Converter
implementation forjava.util.Date
values.class
DoubleConverter
Converter
implementation forjava.lang.Double
(and double primitive) values.class
EnumConverter
Converter
implementation forjava.lang.Enum
(and enum primitive) values.class
FloatConverter
Converter
implementation forjava.lang.Float
(and float primitive) values.class
IntegerConverter
Converter
implementation forjava.lang.Integer
(and int primitive) values.class
LongConverter
Converter
implementation forjava.lang.Long
(and long primitive) values.class
NumberConverter
Converter
implementation forjava.lang.Number
values.class
ShortConverter
Converter
implementation forjava.lang.Short
(and short primitive) values.
-