Package com.querydsl.core
Class JoinFlag
java.lang.Object
com.querydsl.core.JoinFlag
- All Implemented Interfaces:
Serializable
JoinFlag defines a join related flag using an Expression instance
JoinFlag instances can be used in Querydsl modules which serialize queries to String form.
- Author:
- tiwe
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionJoinFlag(Expression<?> flag) Create a new instance using the given flagJoinFlag(Expression<?> flag, JoinFlag.Position position) Create a new instance using the given flag and positionCreate a new instance using the given flagJoinFlag(String flag, JoinFlag.Position position) Create a new instance using the given flag and position. -
Method Summary
-
Constructor Details
-
JoinFlag
Create a new instance using the given flagThe used position is before the target.
- Parameters:
flag- flag in String form
-
JoinFlag
Create a new instance using the given flag and position.- Parameters:
flag- flag in String formposition- position of the flag in the join
-
JoinFlag
Create a new instance using the given flagThe used position is before the target.
- Parameters:
flag- flag in Expression form
-
JoinFlag
Create a new instance using the given flag and position- Parameters:
flag- flag in Expression formposition- position of the flag in the join
-
-
Method Details