Class NumberConverter
- java.lang.Object
-
- jakarta.faces.convert.NumberConverter
-
- All Implemented Interfaces:
PartialStateHolder
,StateHolder
,Converter
public class NumberConverter extends Object implements Converter, PartialStateHolder
Converter
implementation forjava.lang.Number
values.The
getAsObject()
method parses a String into anjava.lang.Double
orjava.lang.Long
, according to the following algorithm:- If the specified String is null, return a
null
. Otherwise, trim leading and trailing whitespace before proceeding. - If the specified String - after trimming - has a zero length, return
null
. - If the
locale
property is not null, use thatLocale
for managing parsing. Otherwise, use theLocale
from theUIViewRoot
. - If a
pattern
has been specified, its syntax must conform the rules specified byjava.text.DecimalFormat
. Such a pattern will be used to parse, and thetype
property will be ignored. - If a
pattern
has not been specified, parsing will be based on thetype
property, which expects a currency, a number, or a percent. The parse pattern for currencies, numbers, and percentages is determined by calling thegetCurrencyInstance()
,getNumberInstance()
, orgetPercentInstance()
method of thejava.text.NumberFormat
class, passing in the selectedLocale
. - If the
integerOnly
property has been set to true, only the integer portion of the String will be parsed. See the JavaDocs for thesetParseIntegerOnly()
method of thejava.text.NumberFormat
class for more information.
The
getAsString()
method expects a value of typejava.lang.Number
(or a subclass), and creates a formatted String according to the following algorithm:- If the specified value is null, return a zero-length String.
- If the specified value is a String, return it unmodified.
- If the
locale
property is not null, use thatLocale
for managing formatting. Otherwise, use theLocale
from theFacesContext
. - If a
pattern
has been specified, its syntax must conform the rules specified byjava.text.DecimalFormat
. Such a pattern will be used to format, and thetype
property (along with related formatting options described in the next paragraph) will be ignored. - If a
pattern
has not been specified, formatting will be based on thetype
property, which formats the value as a currency, a number, or a percent. The format pattern for currencies, numbers, and percentages is determined by calling the percentages is determined by calling thegetCurrencyInstance()
,getNumberInstance()
, orgetPercentInstance()
method of thejava.text.NumberFormat
class, passing in the selectedLocale
. In addition, the following properties will be applied to the format pattern, if specified:- If the
groupingUsed
property istrue
, thesetGroupingUsed(true)
method on the correspondingNumberFormat
instance will be called. - The minimum and maximum number of digits in the integer and fractional portions of the result will be configured
based on any values set for the
maxFractionDigits
,maxIntegerDigits
,minFractionDigits
, andminIntegerDigits
properties. - If the type is set to
currency
, it is also possible to configure the currency symbol to be used, using either thecurrencyCode
orcurrencySymbol
properties. If both are set, the value forcurrencyCode
takes precedence on a JDK 1.4 (or later) JVM; otherwise, the value forcurrencySymbol
takes precedence.
- If the
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONVERTER_ID
The standard converter id for this converter.static String
CURRENCY_ID
The message identifier of theFacesMessage
to be created if the conversion toNumber
fails.static String
NUMBER_ID
The message identifier of theFacesMessage
to be created if the conversion toNumber
fails.static String
PATTERN_ID
The message identifier of theFacesMessage
to be created if the conversion toNumber
fails.static String
PERCENT_ID
The message identifier of theFacesMessage
to be created if the conversion toNumber
fails.static String
STRING_ID
The message identifier of theFacesMessage
to be created if the conversion of theNumber
value toString
fails.-
Fields inherited from interface jakarta.faces.convert.Converter
DATETIMECONVERTER_DEFAULT_TIMEZONE_IS_SYSTEM_TIMEZONE_PARAM_NAME
-
-
Constructor Summary
Constructors Constructor Description NumberConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearInitialState()
Reset the PartialStateHolder to a non-delta tracking state.Object
getAsObject(FacesContext context, UIComponent component, String value)
Convert the specified string value, which is associated with the specifiedUIComponent
, into a model data object that is appropriate for being stored during the Process Validations phase of the request processing lifecycle.String
getAsString(FacesContext context, UIComponent component, Object value)
Convert the specified model object value, which is associated with the specifiedUIComponent
, into a String that is suitable for being included in the response generated during the Render Response phase of the request processing lifeycle.String
getCurrencyCode()
Return the ISO 4217 currency code used bygetAsString()
with atype
ofcurrency
.String
getCurrencySymbol()
Return the currency symbol used bygetAsString()
with atype
ofcurrency
.Locale
getLocale()
Return theLocale
to be used when parsing numbers.int
getMaxFractionDigits()
Return the maximum number of digitsgetAsString()
should render in the fraction portion of the result.int
getMaxIntegerDigits()
Return the maximum number of digitsgetAsString()
should render in the integer portion of the result.int
getMinFractionDigits()
Return the minimum number of digitsgetAsString()
should render in the fraction portion of the result.int
getMinIntegerDigits()
Return the minimum number of digitsgetAsString()
should render in the integer portion of the result.String
getPattern()
Return the format pattern to be used when formatting and parsing numbers.String
getType()
Return the number type to be used when formatting and parsing numbers.boolean
initialStateMarked()
Returntrue
if delta state changes are being tracked, otherwisefalse
boolean
isGroupingUsed()
Returntrue
ifgetAsString
should include grouping separators if necessary.boolean
isIntegerOnly()
Returntrue
if only the integer portion of the given value should be returned fromgetAsObject()
.boolean
isTransient()
If true, the Object implementing this interface must not participate in state saving or restoring.void
markInitialState()
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 context, Object state)
Perform any processing required to restore the state from the entries in the state Object.Object
saveState(FacesContext context)
Gets the state of the instance as aSerializable
Object.void
setCurrencyCode(String currencyCode)
Set the ISO 4217 currency code used bygetAsString()
with atype
ofcurrency
.void
setCurrencySymbol(String currencySymbol)
Set the currency symbol used bygetAsString()
with atype
ofcurrency
.void
setGroupingUsed(boolean groupingUsed)
Set the flag indicating whethergetAsString()
should include grouping separators if necessary.void
setIntegerOnly(boolean integerOnly)
Set totrue
if only the integer portion of the given value should be returned fromgetAsObject()
.void
setLocale(Locale locale)
Set theLocale
to be used when parsing numbers.void
setMaxFractionDigits(int maxFractionDigits)
Set the maximum number of digitsgetAsString()
should render in the fraction portion of the result.void
setMaxIntegerDigits(int maxIntegerDigits)
Set the maximum number of digitsgetAsString()
should render in the integer portion of the result.void
setMinFractionDigits(int minFractionDigits)
Set the minimum number of digitsgetAsString()
should render in the fraction portion of the result.void
setMinIntegerDigits(int minIntegerDigits)
Set the minimum number of digitsgetAsString()
should render in the integer portion of the result.void
setPattern(String pattern)
Set the format pattern to be used when formatting and parsing numbers.void
setTransient(boolean transientFlag)
Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.void
setType(String type)
Set the number type to be used when formatting and parsing numbers.
-
-
-
Field Detail
-
CONVERTER_ID
public static final String CONVERTER_ID
The standard converter id for this converter.
- See Also:
- Constant Field Values
-
CURRENCY_ID
public static final String CURRENCY_ID
The message identifier of the
FacesMessage
to be created if the conversion toNumber
fails. The message format string for this message may optionally include the following placeholders:{0}
replaced by the unconverted value.{1}
replaced by an example value.{2}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
- Constant Field Values
-
NUMBER_ID
public static final String NUMBER_ID
The message identifier of the
FacesMessage
to be created if the conversion toNumber
fails. The message format string for this message may optionally include the following placeholders:{0}
replaced by the unconverted value.{1}
replaced by an example value.{2}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
- Constant Field Values
-
PATTERN_ID
public static final String PATTERN_ID
The message identifier of the
FacesMessage
to be created if the conversion toNumber
fails. The message format string for this message may optionally include the following placeholders:{0}
replaced by the unconverted value.{1}
replaced by an example value.{2}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
- Constant Field Values
-
PERCENT_ID
public static final String PERCENT_ID
The message identifier of the
FacesMessage
to be created if the conversion toNumber
fails. The message format string for this message may optionally include the following placeholders:{0}
replaced by the unconverted value.{1}
replaced by an example value.{2}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
- Constant Field Values
-
STRING_ID
public static final String STRING_ID
The message identifier of the
FacesMessage
to be created if the conversion of theNumber
value toString
fails. The message format string for this message may optionally include the following placeholders:{0}
relaced by the unconverted value.{1}
replaced by aString
whose value is the label of the input component that produced this message.
- See Also:
- Constant Field Values
-
-
Method Detail
-
getCurrencyCode
public String getCurrencyCode()
Return the ISO 4217 currency code used by
getAsString()
with atype
ofcurrency
. If not set, the value used will be based on the formattingLocale
.- Returns:
- the currency code
-
setCurrencyCode
public void setCurrencyCode(String currencyCode)
Set the ISO 4217 currency code used by
getAsString()
with atype
ofcurrency
.- Parameters:
currencyCode
- The new currency code
-
getCurrencySymbol
public String getCurrencySymbol()
Return the currency symbol used by
getAsString()
with atype
ofcurrency
. If not set, the value used will be based on the formattingLocale
.- Returns:
- the currency symbol
-
setCurrencySymbol
public void setCurrencySymbol(String currencySymbol)
Set the currency symbol used by
getAsString()
with atype
ofcurrency
.- Parameters:
currencySymbol
- The new currency symbol
-
isGroupingUsed
public boolean isGroupingUsed()
Return
true
ifgetAsString
should include grouping separators if necessary. If not modified, the default value istrue
.- Returns:
- whether or not grouping is used
-
setGroupingUsed
public void setGroupingUsed(boolean groupingUsed)
Set the flag indicating whether
getAsString()
should include grouping separators if necessary.- Parameters:
groupingUsed
- The new grouping used flag
-
isIntegerOnly
public boolean isIntegerOnly()
Return
true
if only the integer portion of the given value should be returned fromgetAsObject()
. If not modified, the default value isfalse
.- Returns:
- whether or not this is integer only
-
setIntegerOnly
public void setIntegerOnly(boolean integerOnly)
Set to
true
if only the integer portion of the given value should be returned fromgetAsObject()
.- Parameters:
integerOnly
- The new integer-only flag
-
getMaxFractionDigits
public int getMaxFractionDigits()
Return the maximum number of digits
getAsString()
should render in the fraction portion of the result.- Returns:
- the maximum fraction digits
-
setMaxFractionDigits
public void setMaxFractionDigits(int maxFractionDigits)
Set the maximum number of digits
getAsString()
should render in the fraction portion of the result. If not set, the number of digits depends on the value being converted.- Parameters:
maxFractionDigits
- The new limit
-
getMaxIntegerDigits
public int getMaxIntegerDigits()
Return the maximum number of digits
getAsString()
should render in the integer portion of the result.- Returns:
- the max integer digits
-
setMaxIntegerDigits
public void setMaxIntegerDigits(int maxIntegerDigits)
Set the maximum number of digits
getAsString()
should render in the integer portion of the result. If not set, the number of digits depends on the value being converted.- Parameters:
maxIntegerDigits
- The new limit
-
getMinFractionDigits
public int getMinFractionDigits()
Return the minimum number of digits
getAsString()
should render in the fraction portion of the result.- Returns:
- the min fraction digits
-
setMinFractionDigits
public void setMinFractionDigits(int minFractionDigits)
Set the minimum number of digits
getAsString()
should render in the fraction portion of the result. If not set, the number of digits depends on the value being converted.- Parameters:
minFractionDigits
- The new limit
-
getMinIntegerDigits
public int getMinIntegerDigits()
Return the minimum number of digits
getAsString()
should render in the integer portion of the result.- Returns:
- the minimum integer digits
-
setMinIntegerDigits
public void setMinIntegerDigits(int minIntegerDigits)
Set the minimum number of digits
getAsString()
should render in the integer portion of the result. If not set, the number of digits depends on the value being converted.- Parameters:
minIntegerDigits
- The new limit
-
getLocale
public Locale getLocale()
Return the
Locale
to be used when parsing numbers. If this value isnull
, theLocale
stored in theUIViewRoot
for the current request will be utilized.- Returns:
- the
Locale
for this converter
-
setLocale
public void setLocale(Locale locale)
Set the
Locale
to be used when parsing numbers. If set tonull
, theLocale
stored in theUIViewRoot
for the current request will be utilized.- Parameters:
locale
- The newLocale
(ornull
)
-
getPattern
public String getPattern()
Return the format pattern to be used when formatting and parsing numbers.
- Returns:
- the pattern
-
setPattern
public void setPattern(String pattern)
Set the format pattern to be used when formatting and parsing numbers. Valid values are those supported by
java.text.DecimalFormat
. An invalid value will cause aConverterException
whengetAsObject()
orgetAsString()
is called.- Parameters:
pattern
- The new format pattern
-
getType
public String getType()
Return the number type to be used when formatting and parsing numbers. If not modified, the default type is
number
.- Returns:
- the type
-
setType
public void setType(String type)
Set the number type to be used when formatting and parsing numbers. Valid values are
currency
,number
, orpercent
. An invalid value will cause aConverterException
whengetAsObject()
orgetAsString()
is called.- Parameters:
type
- The new number style
-
getAsObject
public Object getAsObject(FacesContext context, UIComponent component, String value)
Description copied from interface:Converter
Convert the specified string value, which is associated with the specified
UIComponent
, into a model data object that is appropriate for being stored during the Process Validations phase of the request processing lifecycle.- Specified by:
getAsObject
in interfaceConverter
- Parameters:
context
-FacesContext
for the request being processedcomponent
-UIComponent
with which this model object value is associatedvalue
- String value to be converted (may benull
)- 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
public String getAsString(FacesContext context, UIComponent component, Object value)
Description copied from interface:Converter
Convert the specified model object value, which is associated with the specified
UIComponent
, into a String that is suitable for being included in the response generated during the Render Response phase of the request processing lifeycle.- 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
-
saveState
public Object saveState(FacesContext context)
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:
context
- the Faces context.- Returns:
- the saved state.
-
restoreState
public void restoreState(FacesContext context, Object state)
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:
context
- the Faces context.state
- the state.
-
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.
-
setTransient
public void setTransient(boolean transientFlag)
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:
transientFlag
- boolean passtrue
if this Object will not participate in state saving or restoring, otherwise passfalse
.
-
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
-
-