public static enum RunnerContext.RunnerStatus extends Enum<RunnerContext.RunnerStatus>
| Modifier and Type | Method and Description | 
|---|---|
| static RunnerContext.RunnerStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RunnerContext.RunnerStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RunnerContext.RunnerStatus RUNNING
public static final RunnerContext.RunnerStatus FINISHED
public static final RunnerContext.RunnerStatus ERROR
public static RunnerContext.RunnerStatus[] values()
for (RunnerContext.RunnerStatus c : RunnerContext.RunnerStatus.values()) System.out.println(c);
public static RunnerContext.RunnerStatus 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 © 2019. All Rights Reserved.