|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<PathType>
com.mysema.query.types.PathType
public enum PathType
PathType represents the relation of a Path to its parent
| Enum Constant Summary | |
|---|---|
ARRAYVALUE
Indexed array access (array[i]) |
|
ARRAYVALUE_CONSTANT
Indexed array access with constant (array[i]) |
|
COLLECTION_ANY
Access of any element in a collection |
|
LISTVALUE
Indexed list access (list.get(index)) |
|
LISTVALUE_CONSTANT
Indexed list access with constant (list.get(index)) |
|
MAPVALUE
Map value access (map.get(key)) |
|
MAPVALUE_CONSTANT
Map value access with constant (map.get(key)) |
|
PROPERTY
Property of the parent |
|
VARIABLE
Root path |
|
| Method Summary | |
|---|---|
String |
getId()
Get the unique id for this Operator |
List<Class<?>> |
getTypes()
Get the types related to this operator symbols |
static PathType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PathType[] |
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 PathType ARRAYVALUE
public static final PathType ARRAYVALUE_CONSTANT
public static final PathType COLLECTION_ANY
public static final PathType LISTVALUE
public static final PathType LISTVALUE_CONSTANT
public static final PathType MAPVALUE
public static final PathType MAPVALUE_CONSTANT
public static final PathType PROPERTY
public static final PathType VARIABLE
| Method Detail |
|---|
public static PathType[] values()
for (PathType c : PathType.values()) System.out.println(c);
public static PathType 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 List<Class<?>> getTypes()
Operator
getTypes in interface Operator<Path<?>>public String getId()
Operator
getId in interface Operator<Path<?>>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||