Class EnumConverter
- All Implemented Interfaces:
PartialStateHolder
,StateHolder
,Converter
Converter
implementation for
java.lang.Enum
(and enum primitive) values.
- Since:
- 1.2
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The standard converter id for this converter.static final String
The message identifier of theFacesMessage
to be created if the conversion toEnum
fails.static final String
The message identifier of theFacesMessage
to be created if the conversion toEnum
fails and no target class has been provided.Fields inherited from interface jakarta.faces.convert.Converter
DATETIMECONVERTER_DEFAULT_TIMEZONE_IS_SYSTEM_TIMEZONE_PARAM_NAME
-
Constructor Summary
ConstructorDescriptionFor StateHolderEnumConverter
(Class targetClass) Instantiates an enum converter with a class where enum constants are taken from. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Reset the PartialStateHolder to a non-delta tracking state.getAsObject
(FacesContext context, UIComponent component, String value) Convert thevalue
argument to one of the enum constants of the class provided in our constructor.getAsString
(FacesContext context, UIComponent component, Object value) Convert the enum constant given by thevalue
argument into a String.boolean
Returntrue
if delta state changes are being tracked, otherwisefalse
boolean
If true, the Object implementing this interface must not participate in state saving or restoring.void
The runtime must ensure that thePartialStateHolder.markInitialState()
method is called on each instance of this interface in the view at the appropriate time to indicate the component is in its initial state.void
restoreState
(FacesContext facesContext, Object object) Perform any processing required to restore the state from the entries in the state Object.saveState
(FacesContext facesContext) Gets the state of the instance as aSerializable
Object.void
setTransient
(boolean b) Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.
-
Field Details
-
CONVERTER_ID
The standard converter id for this converter.
- See Also:
-
ENUM_ID
The message identifier of the
FacesMessage
to be created if the conversion toEnum
fails. The message format string for this message may optionally include the following placeholders:{0}
replaced by the unconverted value.{1}
replaced by one of the enum constants or the empty string if none can be found.{2}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
-
ENUM_NO_CLASS_ID
The message identifier of the
FacesMessage
to be created if the conversion toEnum
fails and no target class has been provided. The message format string for this message may optionally include the following placeholders:{0}
replaced by the unconverted value.{1}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
-
-
Constructor Details
-
EnumConverter
public EnumConverter()For StateHolder -
EnumConverter
Instantiates an enum converter with a class where enum constants are taken from.- Parameters:
targetClass
- Class where the enum constants are taken from by the converter methods.
-
-
Method Details
-
getAsObject
Convert the
value
argument to one of the enum constants of the class provided in our constructor. If no target class argument has been provided to the constructor of this instance, throw aConverterException
containing theENUM_NO_CLASS_ID
message with proper parameters. If thevalue
argument isnull
or it has a length of zero, returnnull
. Otherwise, perform the equivalent ofEnum.valueOf
using target class andvalue
and return theObject
. If the conversion fails, throw aConverterException
containing theENUM_ID
message with proper parameters.- Specified by:
getAsObject
in interfaceConverter
- Parameters:
context
- theFacesContext
for this request.component
- theUIComponent
to which this value will be applied.value
- the Stringvalue
to be converted toObject
.- Returns:
null
if the value to convert isnull
, otherwise the result of the conversion- Throws:
ConverterException
- if conversion cannot be successfully performedNullPointerException
- ifcontext
orcomponent
isnull
-
getAsString
Convert the enum constant given by the
value
argument into a String. If no target class argument has been provided to the constructor of this instance, throw aConverterException
containing theENUM_NO_CLASS_ID
message with proper parameters. If thevalue
argument isnull
, return the empty String. If the value is an instance of the provided target class, return its string value by casting it to ajava.lang.Enum
and returning the result of calling thename()
method. Otherwise, throw aConverterException
containing theENUM_ID
message with proper parameters.- Specified by:
getAsString
in interfaceConverter
- Parameters:
context
-FacesContext
for the request being processedcomponent
-UIComponent
with which this model object value is associatedvalue
- Model object value to be converted (may benull
)- Returns:
- a zero-length String if value is
null
, otherwise the result of the conversion - Throws:
ConverterException
- if conversion cannot be successfully performedNullPointerException
- ifcontext
orcomponent
isnull
-
restoreState
Description copied from interface:StateHolder
Perform any processing required to restore the state from the entries in the state Object.
If the class that implements this interface has references to instances that also implement StateHolder (such as a
UIComponent
with event handlers, validators, etc.) this method must call theStateHolder.restoreState(jakarta.faces.context.FacesContext, java.lang.Object)
method on all those instances as well.If the
state
argument isnull
, take no action and return.- Specified by:
restoreState
in interfaceStateHolder
- Parameters:
facesContext
- the Faces context.object
- the state.
-
saveState
Description copied from interface:StateHolder
Gets the state of the instance as a
Serializable
Object.If the class that implements this interface has references to instances that implement StateHolder (such as a
UIComponent
with event handlers, validators, etc.) this method must call theStateHolder.saveState(jakarta.faces.context.FacesContext)
method on all those instances as well. This method must not save the state of children and facets. That is done via theStateManager
This method must not alter the state of the implementing object. In other words, after executing this code:
Object state = component.saveState(facesContext);
component
should be the same as before executing it.The return from this method must be
Serializable
- Specified by:
saveState
in interfaceStateHolder
- Parameters:
facesContext
- the Faces context.- Returns:
- the saved state.
-
setTransient
public void setTransient(boolean b) Description copied from interface:StateHolder
Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.
- Specified by:
setTransient
in interfaceStateHolder
- Parameters:
b
- boolean passtrue
if this Object will not participate in state saving or restoring, otherwise passfalse
.
-
isTransient
public boolean isTransient()Description copied from interface:StateHolder
If true, the Object implementing this interface must not participate in state saving or restoring.
- Specified by:
isTransient
in interfaceStateHolder
- Returns:
true
if transient,false
otherwise.
-
markInitialState
public void markInitialState()Description copied from interface:PartialStateHolder
The runtime must ensure that the
PartialStateHolder.markInitialState()
method is called on each instance of this interface in the view at the appropriate time to indicate the component is in its initial state. The implementor of the interface must ensure thatPartialStateHolder.initialStateMarked()
returnstrue
from the timemarkInitialState()
is called untilPartialStateHolder.clearInitialState()
is called, after which timeinitialStateMarked()
must returnfalse
. Also, during the time that the instance returnstrue
frominitialStateMarked()
, the implementation must return only the state that has changed in its implementation ofStateHolder.saveState(jakarta.faces.context.FacesContext)
.- Specified by:
markInitialState
in interfacePartialStateHolder
-
initialStateMarked
public boolean initialStateMarked()Description copied from interface:PartialStateHolder
Return
true
if delta state changes are being tracked, otherwisefalse
- Specified by:
initialStateMarked
in interfacePartialStateHolder
- Returns:
true
if the initial state is marked,false
otherwise.
-
clearInitialState
public void clearInitialState()Description copied from interface:PartialStateHolder
Reset the PartialStateHolder to a non-delta tracking state.
- Specified by:
clearInitialState
in interfacePartialStateHolder
-