|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RouteNodeLookupLogic> org.kuali.rice.kew.api.document.search.RouteNodeLookupLogic
public enum RouteNodeLookupLogic
Defines flags that can be used during document search to indicate what relation the route node name being searched on should have to the current route node of the documents being searched.
Enum Constant Summary | |
---|---|
AFTER
Indicates that the document should currently be somewhere after the specified route node in it's route path. |
|
BEFORE
Indicates that the document should currently be somewhere before the specified route node in it's route path. |
|
EXACTLY
Indicates that the document should be exactly at the specified route node in it's route path. |
Method Summary | |
---|---|
static RouteNodeLookupLogic |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RouteNodeLookupLogic[] |
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 RouteNodeLookupLogic EXACTLY
public static final RouteNodeLookupLogic BEFORE
public static final RouteNodeLookupLogic AFTER
Method Detail |
---|
public static RouteNodeLookupLogic[] values()
for (RouteNodeLookupLogic c : RouteNodeLookupLogic.values()) System.out.println(c);
public static RouteNodeLookupLogic 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |