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