Enum NumberFormatOptions.SignumSignPlacement
- java.lang.Object
-
- java.lang.Enum<NumberFormatOptions.SignumSignPlacement>
-
- de.xima.fc.form.common.number_format.NumberFormatOptions.SignumSignPlacement
-
- All Implemented Interfaces:
com.alibaba.fastjson.serializer.JSONSerializable
,Serializable
,Comparable<NumberFormatOptions.SignumSignPlacement>
- Enclosing class:
- NumberFormatOptions
public static enum NumberFormatOptions.SignumSignPlacement extends Enum<NumberFormatOptions.SignumSignPlacement> implements com.alibaba.fastjson.serializer.JSONSerializable
Where to place the signum sign that indicates whether a number is positive or negative.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTER_UNIT
Place the signum sign after the unit sign, e.g.BEFORE_UNIT
Place the signum sign before the unit sign, e.g.END
Place the signum sign at the very end, e.g.START
Place the signum sign at the very beginning, e.g.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NumberFormatOptions.SignumSignPlacement
fromString(String value)
Finds the enum constant corresponding to the given string value, seevalue()
.String
toString()
String
value()
Gets the string value of this signum sign placement.static NumberFormatOptions.SignumSignPlacement
valueOf(String name)
Returns the enum constant of this type with the specified name.static NumberFormatOptions.SignumSignPlacement[]
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
-
BEFORE_UNIT
public static final NumberFormatOptions.SignumSignPlacement BEFORE_UNIT
Place the signum sign before the unit sign, e.g.-$1,234.56
or1,234.56-$
.
-
AFTER_UNIT
public static final NumberFormatOptions.SignumSignPlacement AFTER_UNIT
Place the signum sign after the unit sign, e.g.$-1,234.56
or1,234.56$-
.
-
START
public static final NumberFormatOptions.SignumSignPlacement START
Place the signum sign at the very beginning, e.g.-$1,234.56
or-1,234.56$
.
-
END
public static final NumberFormatOptions.SignumSignPlacement END
Place the signum sign at the very end, e.g.$1,234.56-
or1,234.56$-
.
-
-
Method Detail
-
values
public static NumberFormatOptions.SignumSignPlacement[] 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.SignumSignPlacement c : NumberFormatOptions.SignumSignPlacement.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.SignumSignPlacement 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.SignumSignPlacement>
-
value
public String value()
Gets the string value of this signum sign placement.- Returns:
- The string value of this signum sign placement.
-
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.SignumSignPlacement 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.
-
-