public enum JoinType extends Enum<JoinType>
| Enum Constant and Description |
|---|
MYSQL_INNER_JOIN |
MYSQL_LEFT_JOIN |
MYSQL_NATURAL_INNER_JOIN |
MYSQL_NATURAL_LEFT_JOIN |
MYSQL_NATURAL_RIGHT_JOIN |
MYSQL_RIGHT_JOIN |
MYSQL_STRAIGHT_JOIN |
| Modifier and Type | Method and Description |
|---|---|
String |
getJoinType()
Get join type.
|
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.
|
public static final JoinType MYSQL_INNER_JOIN
public static final JoinType MYSQL_STRAIGHT_JOIN
public static final JoinType MYSQL_LEFT_JOIN
public static final JoinType MYSQL_RIGHT_JOIN
public static final JoinType MYSQL_NATURAL_INNER_JOIN
public static final JoinType MYSQL_NATURAL_LEFT_JOIN
public static final JoinType MYSQL_NATURAL_RIGHT_JOIN
public 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 String getJoinType()
Copyright © 2022 The Apache Software Foundation. All rights reserved.