public enum Field extends Enum<Field>
| Enum Constant and Description |
|---|
BUILD_DISPLAY_NAME |
BUILD_NUMBER |
BUILD_PARAMETER |
CONSOLE |
PROJECT_NAME |
| Modifier and Type | Field and Description |
|---|---|
boolean |
defaultSearchable |
String |
fieldName |
boolean |
numeric |
boolean |
persist |
| Modifier and Type | Method and Description |
|---|---|
static Field |
getIndex(String fieldName) |
abstract Object |
getValue(Run<?,?> build) |
static Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Field PROJECT_NAME
public static final Field BUILD_NUMBER
public static final Field BUILD_DISPLAY_NAME
public static final Field BUILD_PARAMETER
public static final Field CONSOLE
public final String fieldName
public final boolean defaultSearchable
public final boolean numeric
public final boolean persist
public static Field[] values()
for (Field c : Field.values()) System.out.println(c);
public static Field 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 © 2016–2021. All rights reserved.