Enum NumberFormatOptions.EmptyMode
- java.lang.Object
-
- java.lang.Enum<NumberFormatOptions.EmptyMode>
-
- de.xima.fc.form.common.number_format.NumberFormatOptions.EmptyMode
-
- All Implemented Interfaces:
com.alibaba.fastjson.serializer.JSONSerializable
,Serializable
,Comparable<NumberFormatOptions.EmptyMode>
- Enclosing class:
- NumberFormatOptions
public static enum NumberFormatOptions.EmptyMode extends Enum<NumberFormatOptions.EmptyMode> implements com.alibaba.fastjson.serializer.JSONSerializable
Defines the behavior of the input field when it is empty, i.e. no number is present.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEEP_EMPTY
Keep the input field empty.SHOW_UNIT
Show the unit sign (if any).SHOW_UNIT_ON_FOCUS
Keep the input empty, but show the unit sign when the input field is focused.SHOW_ZERO_AND_UNIT
Show the number0
and the unit sign (if any).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NumberFormatOptions.EmptyMode
fromString(String value)
Finds the enum constant corresponding to the given string value, seevalue()
.String
toString()
String
value()
Gets the string value of this empty mode.static NumberFormatOptions.EmptyMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static NumberFormatOptions.EmptyMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.void
write(com.alibaba.fastjson.serializer.JSONSerializer serializer, Object fieldName, Type fieldType, int features)
-
-
-
Enum Constant Detail
-
KEEP_EMPTY
public static final NumberFormatOptions.EmptyMode KEEP_EMPTY
Keep the input field empty.
-
SHOW_UNIT
public static final NumberFormatOptions.EmptyMode SHOW_UNIT
Show the unit sign (if any).
-
SHOW_ZERO_AND_UNIT
public static final NumberFormatOptions.EmptyMode SHOW_ZERO_AND_UNIT
Show the number0
and the unit sign (if any).
-
SHOW_UNIT_ON_FOCUS
public static final NumberFormatOptions.EmptyMode SHOW_UNIT_ON_FOCUS
Keep the input empty, but show the unit sign when the input field is focused.
-
-
Method Detail
-
values
public static NumberFormatOptions.EmptyMode[] 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 (NumberFormatOptions.EmptyMode c : NumberFormatOptions.EmptyMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NumberFormatOptions.EmptyMode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<NumberFormatOptions.EmptyMode>
-
value
public String value()
Gets the string value of this empty mode.- Returns:
- The string value of this empty mode.
-
write
public void write(com.alibaba.fastjson.serializer.JSONSerializer serializer, Object fieldName, Type fieldType, int features) throws IOException
- Specified by:
write
in interfacecom.alibaba.fastjson.serializer.JSONSerializable
- Throws:
IOException
-
fromString
public static NumberFormatOptions.EmptyMode fromString(String value)
Finds the enum constant corresponding to the given string value, seevalue()
.- Parameters:
value
- The string value to find the enum constant for.- Returns:
- The enum constant corresponding to the given string value, or
null
if no such constant exists.
-
-