public enum StandardResultField extends Enum<StandardResultField>
| Enum Constant and Description |
|---|
DATE_CREATED |
DOCUMENT_ID |
DOCUMENT_TYPE |
INITIATOR |
ROUTE_LOG |
STATUS |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
static StandardResultField |
fromFieldName(String fieldName) |
Set<String> |
getAdditionalFieldNames()
Returns additional field names that are valid and can be used to represent this standard result field as a string.
|
String |
getStandardFieldName()
Returns the standard field name of this standard result field as a string.
|
boolean |
isFieldNameValid(String fieldName)
Returns true if the given field name represents a valid field name for this standard result field.
|
static StandardResultField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardResultField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardResultField DOCUMENT_ID
public static final StandardResultField STATUS
public static final StandardResultField DOCUMENT_TYPE
public static final StandardResultField TITLE
public static final StandardResultField INITIATOR
public static final StandardResultField DATE_CREATED
public static final StandardResultField ROUTE_LOG
public static StandardResultField[] values()
for (StandardResultField c : StandardResultField.values()) System.out.println(c);
public static StandardResultField 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 String getStandardFieldName()
public Set<String> getAdditionalFieldNames()
public boolean isFieldNameValid(String fieldName)
fieldName - the field name to checkpublic static StandardResultField fromFieldName(String fieldName)
Copyright © 2005–2016 The Kuali Foundation. All rights reserved.