Enum Class JoinType
- All Implemented Interfaces:
Serializable, Comparable<JoinType>, Constable, Segment
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E>Nested classes/interfaces inherited from interface Segment
Segment.Default -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription交叉连接|笛卡尔积全连接内连接左外连接自然连接(使用同名字段)右外连接 -
Method Summary
-
Enum Constant Details
-
JOIN
内连接 -
LEFT_JOIN
左外连接 -
RIGHT_JOIN
右外连接 -
FULL_JOIN
全连接 -
CROSS_JOIN
交叉连接|笛卡尔积 -
NATURAL_JOIN
自然连接(使用同名字段)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
pseudoSql
-
staticable
public boolean staticable()Description copied from interface:Segment是否静态化的,即不必转译- Specified by:
staticablein interfaceSegment- Returns:
- 是否静态化
-