com.mysema.query
Enum JoinFlag.Position

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

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


Enum Constant Summary
BEFORE_CONDITION
          before the join condition
BEFORE_TARGET
          before the join target
END
          after the join
OVERRIDE
          as a replacement for the join symbol
START
          before the join
 
Method Summary
static JoinFlag.Position valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JoinFlag.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 JoinFlag.Position START
before the join


OVERRIDE

public static final JoinFlag.Position OVERRIDE
as a replacement for the join symbol


BEFORE_TARGET

public static final JoinFlag.Position BEFORE_TARGET
before the join target


BEFORE_CONDITION

public static final JoinFlag.Position BEFORE_CONDITION
before the join condition


END

public static final JoinFlag.Position END
after the join

Method Detail

values

public static JoinFlag.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 (JoinFlag.Position c : JoinFlag.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 JoinFlag.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-2011 Mysema Ltd. All Rights Reserved.