Package jakarta.faces.convert
Contains classes and interfaces
defining converters. The main class in this package is Converter.
-
Interface Summary Interface Description Converter<T> Converter is an interface describing a Java class that can perform Object-to-String and String-to-Object conversions between model data objects and a String representation of those objects that is suitable for rendering. -
Class Summary Class Description BigDecimalConverter Converterimplementation forjava.math.BigDecimalvalues.BigIntegerConverter Converterimplementation forjava.math.BigIntegervalues.BooleanConverter Converterimplementation forjava.lang.Boolean(and boolean primitive) values.ByteConverter Converterimplementation forjava.lang.Byte(and byte primitive) values.CharacterConverter Converterimplementation forjava.lang.Character(and char primitive) values.DateTimeConverter Converterimplementation forjava.util.Datevalues.DoubleConverter Converterimplementation forjava.lang.Double(and double primitive) values.EnumConverter Converterimplementation forjava.lang.Enum(and enum primitive) values.FacesConverter.Literal Supports inline instantiation of theFacesConverterqualifier.FloatConverter Converterimplementation forjava.lang.Float(and float primitive) values.IntegerConverter Converterimplementation forjava.lang.Integer(and int primitive) values.LongConverter Converterimplementation forjava.lang.Long(and long primitive) values.NumberConverter Converterimplementation forjava.lang.Numbervalues.ShortConverter Converterimplementation forjava.lang.Short(and short primitive) values. -
Exception Summary Exception Description ConverterException ConverterException is an exception thrown by thegetAsObject()orgetAsText()method of aConverter, to indicate that the requested conversion cannot be performed. -
Annotation Types Summary Annotation Type Description FacesConverter The presence of this annotation on a class automatically registers the class with the runtime as aConverter.