public enum JoinType extends java.lang.Enum<JoinType> implements ValueEnum
includeFrom fields.| Enum Constant and Description | 
|---|
| INNERA regular inner join, whereby rows are only included in the resultset where the join can be satisified, so a missing row
 in the table being joined to results in the entire row being omitted. | 
| OUTERAn outer join. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static JoinType | valueOf(java.lang.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. | 
public static final JoinType INNER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "inner".
public static final JoinType OUTER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "outer".
public static JoinType[] values()
for (JoinType c : JoinType.values()) System.out.println(c);
public static JoinType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null