public static enum JoinFlag.Position extends Enum<JoinFlag.Position>
JoinFlag positions| Enum Constant and Description | 
|---|
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 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final JoinFlag.Position START
public static final JoinFlag.Position OVERRIDE
public static final JoinFlag.Position BEFORE_TARGET
public static final JoinFlag.Position BEFORE_CONDITION
public static final JoinFlag.Position END
public static JoinFlag.Position[] values()
for (JoinFlag.Position c : JoinFlag.Position.values()) System.out.println(c);
public static JoinFlag.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–2016 Querydsl. All rights reserved.