com.mysema.query
Enum QueryFlag.Position

java.lang.Object
  extended by java.lang.Enum<QueryFlag.Position>
      extended by com.mysema.query.QueryFlag.Position
All Implemented Interfaces:
Serializable, Comparable<QueryFlag.Position>
Enclosing class:
QueryFlag

public static enum QueryFlag.Position
extends Enum<QueryFlag.Position>


Enum Constant Summary
AFTER_FILTERS
           
AFTER_GROUP_BY
           
AFTER_HAVING
           
AFTER_ORDER
           
AFTER_PROJECTION
           
AFTER_SELECT
           
BEFORE_FILTERS
           
BEFORE_GROUP_BY
           
BEFORE_HAVING
           
BEFORE_ORDER
           
END
           
START
           
 
Method Summary
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.
 
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

START

public static final QueryFlag.Position START

AFTER_SELECT

public static final QueryFlag.Position AFTER_SELECT

AFTER_PROJECTION

public static final QueryFlag.Position AFTER_PROJECTION

BEFORE_FILTERS

public static final QueryFlag.Position BEFORE_FILTERS

AFTER_FILTERS

public static final QueryFlag.Position AFTER_FILTERS

BEFORE_GROUP_BY

public static final QueryFlag.Position BEFORE_GROUP_BY

AFTER_GROUP_BY

public static final QueryFlag.Position AFTER_GROUP_BY

BEFORE_HAVING

public static final QueryFlag.Position BEFORE_HAVING

AFTER_HAVING

public static final QueryFlag.Position AFTER_HAVING

BEFORE_ORDER

public static final QueryFlag.Position BEFORE_ORDER

AFTER_ORDER

public static final QueryFlag.Position AFTER_ORDER

END

public static final QueryFlag.Position END
Method Detail

values

public static QueryFlag.Position[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (QueryFlag.Position c : QueryFlag.Position.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static QueryFlag.Position valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2007-2010 Mysema Ltd. All Rights Reserved.