public static enum NumberFormatFieldFactory.Range extends java.lang.Enum<NumberFormatFieldFactory.Range>
Enum Constant and Description |
---|
All |
Negative
May include 0.
|
Positive
May include 0.
|
StrictlyNegative
Does not include 0.
|
StrictlyPositive
Does not include 0.
|
Modifier and Type | Method and Description |
---|---|
static NumberFormatFieldFactory.Range |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NumberFormatFieldFactory.Range[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberFormatFieldFactory.Range Negative
public static final NumberFormatFieldFactory.Range StrictlyNegative
public static final NumberFormatFieldFactory.Range Positive
public static final NumberFormatFieldFactory.Range StrictlyPositive
public static final NumberFormatFieldFactory.Range All
public static NumberFormatFieldFactory.Range[] values()
for (NumberFormatFieldFactory.Range c : NumberFormatFieldFactory.Range.values()) System.out.println(c);
public static NumberFormatFieldFactory.Range valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null