public enum OutputType extends Enum<OutputType> implements IAEnum
| Enum Constant and Description |
|---|
ALL_RECORDS |
FAILING_RECORDS |
PASSING_RECORDS |
STATS_ONLY |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static OutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputType PASSING_RECORDS
public static final OutputType FAILING_RECORDS
public static final OutputType ALL_RECORDS
public static final OutputType STATS_ONLY
public static final OutputType UNDEFINED
public static OutputType[] values()
for (OutputType c : OutputType.values()) System.out.println(c);
public static OutputType 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 © 2018–2021 ODPi. All rights reserved.