public enum JoinTableType extends Enum<JoinTableType>
| Modifier and Type | Method and Description |
|---|---|
static JoinTableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinTableType INNER
public static final JoinTableType LEFT
public static final JoinTableType RIGHT
public static final JoinTableType FULL
public static final JoinTableType CROSS
public static final JoinTableType SELF
public static JoinTableType[] values()
for (JoinTableType c : JoinTableType.values()) System.out.println(c);
public static JoinTableType 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 nullCopyright © 2024–2025 Dynamic-SQL. All rights reserved.