public enum Field extends Enum<Field>
| Enum Constant and Description |
|---|
BALL_COLOR |
BUILD_NUMBER |
BUILT_ON |
CONSOLE |
DURATION |
ID |
PROJECT_DISPLAY_NAME |
PROJECT_NAME |
RESULT |
START_CAUSE |
START_TIME |
| 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) |
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 ID
public static final Field PROJECT_NAME
public static final Field PROJECT_DISPLAY_NAME
public static final Field BUILD_NUMBER
public static final Field RESULT
public static final Field DURATION
public static final Field START_TIME
public static final Field BUILT_ON
public static final Field START_CAUSE
public static final Field BALL_COLOR
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 © 2004-2015. All Rights Reserved.