public enum JoinType extends Enum<JoinType>
| Enum Constant and Description | 
|---|
| CROSS_JOINCROSS JOINtwo tables | 
| FULL_OUTER_JOINFULL OUTER JOINtwo tables | 
| JOININNER JOINtwo tables | 
| LEFT_OUTER_JOINLEFT OUTER JOINtwo tables | 
| NATURAL_JOINNATURAL INNER JOINtwo tables | 
| NATURAL_LEFT_OUTER_JOINNATURAL LEFT OUTER JOINtwo tables | 
| NATURAL_RIGHT_OUTER_JOINNATURAL RIGHT OUTER JOINtwo tables | 
| RIGHT_OUTER_JOINRIGHT OUTER JOINtwo tables | 
| Modifier and Type | Method and Description | 
|---|---|
| String | toSQL() | 
| static JoinType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static JoinType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
@Support public static final JoinType NATURAL_LEFT_OUTER_JOIN
NATURAL LEFT OUTER JOIN two tablespublic static JoinType[] values()
for (JoinType c : JoinType.values()) System.out.println(c);
public static JoinType 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 nullpublic final String toSQL()
Copyright © 2013. All Rights Reserved.