public static enum IntegerRange.RangePointType extends java.lang.Enum<IntegerRange.RangePointType>
Enum Constant and Description |
---|
ALL
Start/end point of of a range.
|
MAX
End point of of a range.
|
MIN
Start point of a range.
|
Modifier and Type | Method and Description |
---|---|
static IntegerRange.RangePointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntegerRange.RangePointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegerRange.RangePointType MIN
public static final IntegerRange.RangePointType MAX
public static final IntegerRange.RangePointType ALL
public static IntegerRange.RangePointType[] values()
for (IntegerRange.RangePointType c : IntegerRange.RangePointType.values()) System.out.println(c);
public static IntegerRange.RangePointType 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