public static enum Sequence.Fields extends Enum<Sequence.Fields>
| Enum Constant and Description |
|---|
currentValue |
lockedAt |
lockedBy |
name |
| Modifier and Type | Method and Description |
|---|---|
static Sequence.Fields |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sequence.Fields[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sequence.Fields lockedAt
public static final Sequence.Fields lockedBy
public static final Sequence.Fields name
public static final Sequence.Fields currentValue
public static Sequence.Fields[] values()
for (Sequence.Fields c : Sequence.Fields.values()) System.out.println(c);
public static Sequence.Fields 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 © 2022. All rights reserved.