public enum ExecutionMethod extends Enum<ExecutionMethod>
Enum Constant and Description |
---|
Automated
Automated.
|
Manual
Manual.
|
None
Default value.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionMethod |
forValue(int value)
Returns enum value for the int representation
|
int |
getValue()
Gets current value.
|
static ExecutionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMethod None
public static final ExecutionMethod Manual
public static final ExecutionMethod Automated
public static ExecutionMethod[] values()
for (ExecutionMethod c : ExecutionMethod.values()) System.out.println(c);
public static ExecutionMethod 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 int getValue()
public static ExecutionMethod forValue(int value)
value
- valueCopyright © 2014–2025 Onix Solutions. All rights reserved.