public static enum QueryFlag.Position extends Enum<QueryFlag.Position>
| Enum Constant and Description | 
|---|
| AFTER_FILTERSAfter the filter conditions (where) | 
| AFTER_GROUP_BYAfter group by | 
| AFTER_HAVINGAfter having | 
| AFTER_ORDERAfter order (by) | 
| AFTER_PROJECTIONAfter the projection (after select ...) | 
| AFTER_SELECTAfter the first element (after select) | 
| BEFORE_FILTERSBefore the filter conditions (where) | 
| BEFORE_GROUP_BYBefore group by | 
| BEFORE_HAVINGBefore having | 
| BEFORE_ORDERBefore order (by) | 
| ENDAfter all other tokens | 
| STARTStart of the query | 
| START_OVERRIDEOverride for the first element (e.g SELECT, INSERT) | 
| WITH | 
| Modifier and Type | Method and Description | 
|---|---|
| static QueryFlag.Position | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static QueryFlag.Position[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final QueryFlag.Position WITH
public static final QueryFlag.Position START
public static final QueryFlag.Position START_OVERRIDE
public static final QueryFlag.Position AFTER_SELECT
public static final QueryFlag.Position AFTER_PROJECTION
public static final QueryFlag.Position BEFORE_FILTERS
public static final QueryFlag.Position AFTER_FILTERS
public static final QueryFlag.Position BEFORE_GROUP_BY
public static final QueryFlag.Position AFTER_GROUP_BY
public static final QueryFlag.Position BEFORE_HAVING
public static final QueryFlag.Position AFTER_HAVING
public static final QueryFlag.Position BEFORE_ORDER
public static final QueryFlag.Position AFTER_ORDER
public static final QueryFlag.Position END
public static QueryFlag.Position[] values()
for (QueryFlag.Position c : QueryFlag.Position.values()) System.out.println(c);
public static QueryFlag.Position 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 © 2007–2015 Querydsl. All rights reserved.