public enum ExerciseIndicator extends Enum<ExerciseIndicator>
| Enum Constant and Description |
|---|
EXERCISE |
OPERATIONAL |
TEST |
| Modifier and Type | Method and Description |
|---|---|
static ExerciseIndicator |
fromString(String value) |
String |
toString() |
static ExerciseIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExerciseIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExerciseIndicator OPERATIONAL
public static final ExerciseIndicator EXERCISE
public static final ExerciseIndicator TEST
public static ExerciseIndicator[] values()
for (ExerciseIndicator c : ExerciseIndicator.values()) System.out.println(c);
public static ExerciseIndicator 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 nullpublic static ExerciseIndicator fromString(String value)
public String toString()
toString in class Enum<ExerciseIndicator>Copyright © 2013–2022. All rights reserved.