|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<StandardResultField> org.kuali.rice.kew.framework.document.search.StandardResultField
public enum StandardResultField
An enumeration which defines fields that are used on the document search screen and subject to customization by specific document types which configure such customizations via the document search framework.
Enum Constant Summary | |
---|---|
DATE_CREATED
|
|
DOCUMENT_ID
|
|
DOCUMENT_TYPE
|
|
INITIATOR
|
|
ROUTE_LOG
|
|
STATUS
|
|
TITLE
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic String getStandardFieldName()
public Set<String> getAdditionalFieldNames()
public boolean isFieldNameValid(String fieldName)
fieldName
- the field name to check
public static StandardResultField fromFieldName(String fieldName)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |