Package com.querydsl.core
Enum JoinFlag.Position
- All Implemented Interfaces:
Serializable,Comparable<JoinFlag.Position>,java.lang.constant.Constable
- Enclosing class:
- JoinFlag
The different
JoinFlag positions-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionbefore the join conditionbefore the join targetafter the joinas a replacement for the join symbolbefore the join -
Method Summary
Modifier and TypeMethodDescriptionstatic JoinFlag.PositionReturns 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.
-
Enum Constant Details
-
START
before the join -
OVERRIDE
as a replacement for the join symbol -
BEFORE_TARGET
before the join target -
BEFORE_CONDITION
before the join condition -
END
after the join
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-