public static enum Incrementing.Mode extends Enum<Incrementing.Mode>
| Enum Constant and Description |
|---|
DecrementOnly |
Free |
IncrementOnly |
| Modifier and Type | Method and Description |
|---|---|
static Incrementing.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Incrementing.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Incrementing.Mode Free
public static final Incrementing.Mode IncrementOnly
public static final Incrementing.Mode DecrementOnly
public static Incrementing.Mode[] values()
for (Incrementing.Mode c : Incrementing.Mode.values()) System.out.println(c);
public static Incrementing.Mode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.