public enum LoopStatus extends Enum<LoopStatus>
Enum Constant and Description |
---|
AFTER_LOOP |
BEFORE_LOOP |
FAILED |
INIT |
LOOP |
STOPPED |
Modifier and Type | Method and Description |
---|---|
static LoopStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoopStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoopStatus INIT
public static final LoopStatus BEFORE_LOOP
public static final LoopStatus LOOP
public static final LoopStatus AFTER_LOOP
public static final LoopStatus STOPPED
public static final LoopStatus FAILED
public static LoopStatus[] values()
for (LoopStatus c : LoopStatus.values()) System.out.println(c);
public static LoopStatus 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 © 2014–2015 Nikolche Mihajlovski and contributors. All rights reserved.