Uses of Interface
javax.faces.convert.Converter
-
Packages that use Converter Package Description javax.faces.application javax.faces.component javax.faces.convert javax.faces.webapp org.apache.myfaces.core.api.shared -
-
Uses of Converter in javax.faces.application
Methods in javax.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 javax.faces.component
Methods in javax.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 javax.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 javax.faces.convert
Classes in javax.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 javax.faces.webapp
Methods in javax.faces.webapp that return Converter Modifier and Type Method Description protected abstract Converter
ConverterELTag. createConverter()
protected Converter
ConverterTag. createConverter()
Deprecated. -
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.
-