Uses of Interface
jakarta.faces.convert.Converter
-
Packages that use Converter Package Description jakarta.faces.application jakarta.faces.component jakarta.faces.convert org.apache.myfaces.core.api.shared -
-
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 new
instance of the class that has registered itself as capable of performing conversions for objects of the specified type.Converter
abstract Converter
Application. createConverter(String converterId)
Instantiate and return a new
instance of the class specified by a previous call toConverter
addConverter()
for the specified converter id.Converter
ApplicationWrapper. createConverter(Class<?> targetClass)
Converter
ApplicationWrapper. createConverter(String converterId)
-
Uses of Converter in jakarta.faces.component
Methods in jakarta.faces.component that return Converter Modifier and Type Method Description Converter
UIOutput. getConverter()
An expression that specifies the Converter for this component.Converter
ValueHolder. getConverter()
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)
-
Uses of Converter in jakarta.faces.convert
Classes in jakarta.faces.convert that implement Converter Modifier and Type Class Description class
BigDecimalConverter
see Javadoc of JSF Specificationclass
BigIntegerConverter
see Javadoc of JSF Specificationclass
BooleanConverter
see Javadoc of JSF Specificationclass
ByteConverter
see Javadoc of JSF Specificationclass
CharacterConverter
see Javadoc of JSF Specificationclass
DateTimeConverter
This tag associates a date time converter with the nearest parent UIComponent.class
DoubleConverter
see Javadoc of JSF Specificationclass
EnumConverter
see Javadoc of JSF Specificationclass
FloatConverter
see Javadoc of JSF Specificationclass
IntegerConverter
see Javadoc of JSF Specificationclass
LongConverter
see Javadoc of JSF Specificationclass
NumberConverter
This tag creates a number formatting converter and associates it with the nearest parent UIComponent.class
ShortConverter
see Javadoc of JSF Specification -
Uses of Converter in org.apache.myfaces.core.api.shared
Methods in org.apache.myfaces.core.api.shared that return Converter Modifier and Type Method Description static Converter
SharedRendererUtils. findUIOutputConverter(FacesContext facesContext, UIOutput component)
static Converter
SharedRendererUtils. getSelectItemsValueConverter(Iterator<SelectItem> iterator, FacesContext facesContext)
Iterates through the SelectItems with the given Iterator and tries to obtain a by-class-converter based on the Class of SelectItem.getValue().static Converter
SharedRendererUtils. getValueTypeConverter(FacesContext facesContext, UISelectMany component)
Uses the valueType attribute of the given UISelectMany component to get a by-type converter.Methods in org.apache.myfaces.core.api.shared with parameters of type Converter Modifier and Type Method Description static boolean
SelectItemsUtil. isNoSelectionOption(FacesContext context, UIComponent uiComponent, Object value, Iterator<SelectItem> iterator, Converter converter)
static boolean
SelectItemsUtil. matchValue(FacesContext context, UIComponent uiComponent, Object value, Iterator<SelectItem> iterator, Converter converter)
-