Package io.guise.framework.converter
Enum NumberStringLiteralConverter.Style
- java.lang.Object
-
- java.lang.Enum<NumberStringLiteralConverter.Style>
-
- io.guise.framework.converter.NumberStringLiteralConverter.Style
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NumberStringLiteralConverter.Style>
- Enclosing interface:
- NumberStringLiteralConverter<V extends java.lang.Number>
public static enum NumberStringLiteralConverter.Style extends java.lang.Enum<NumberStringLiteralConverter.Style>
The style of the number in its literal form.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NumberStringLiteralConverter.Style
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NumberStringLiteralConverter.Style[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUMBER
public static final NumberStringLiteralConverter.Style NUMBER
General number formatting.
-
CURRENCY
public static final NumberStringLiteralConverter.Style CURRENCY
Money formatting.
-
PERCENT
public static final NumberStringLiteralConverter.Style PERCENT
Percentage representation.
-
INTEGER
public static final NumberStringLiteralConverter.Style INTEGER
Integer formatting.
-
-
Method Detail
-
values
public static NumberStringLiteralConverter.Style[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NumberStringLiteralConverter.Style c : NumberStringLiteralConverter.Style.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NumberStringLiteralConverter.Style valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-