public enum ExecutionType extends Enum<ExecutionType>
Modifier and Type | Method and Description |
---|---|
static ExecutionType |
getExecutionType(Integer integer)
Get an ExecutionType for a given integer.
|
Integer |
getValue()
Get value of execution type.
|
String |
toString() |
static ExecutionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionType MANUAL
public static final ExecutionType AUTOMATED
public static ExecutionType[] values()
for (ExecutionType c : ExecutionType.values()) System.out.println(c);
public static ExecutionType 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 ExecutionType getExecutionType(Integer integer)
integer
- a given integerpublic Integer getValue()
public String toString()
toString
in class Enum<ExecutionType>
Copyright © 2010–2020. All rights reserved.