public enum ExecutionType extends Enum<ExecutionType>
| Enum Constant and Description |
|---|
ACCEPTANCE |
REGRESSION |
SANITY |
SMOKE |
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
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 ACCEPTANCE
public static final ExecutionType SANITY
public static final ExecutionType SMOKE
public static final ExecutionType REGRESSION
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 int value()
Copyright © 2005–2019 Alfresco Software. All rights reserved.