public static enum IterationStatus.Message extends Enum<IterationStatus.Message>
Enum Constant and Description |
---|
DONE |
INITIALIZE |
UPDATE |
Modifier and Type | Method and Description |
---|---|
static IterationStatus.Message |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IterationStatus.Message[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IterationStatus.Message INITIALIZE
public static final IterationStatus.Message UPDATE
public static final IterationStatus.Message DONE
public static IterationStatus.Message[] values()
for (IterationStatus.Message c : IterationStatus.Message.values()) System.out.println(c);
public static IterationStatus.Message 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 © 2015–2021 Fiji. All rights reserved.