public static enum IntegerSequence.Type extends java.lang.Enum<IntegerSequence.Type>
Modifier and Type | Method and Description |
---|---|
static IntegerSequence.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntegerSequence.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegerSequence.Type EXPLICIT
public static final IntegerSequence.Type FOR
public static final IntegerSequence.Type COMBINED
public static final IntegerSequence.Type RANGE
public static IntegerSequence.Type[] values()
for (IntegerSequence.Type c : IntegerSequence.Type.values()) System.out.println(c);
public static IntegerSequence.Type 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