public enum JoinOnTypeEnum extends Enum<JoinOnTypeEnum>
| Enum Constant and Description |
|---|
FULL
全连
|
INNER
内连
|
LEFT
左连
|
RIGHT
右连
|
| Modifier and Type | Method and Description |
|---|---|
static JoinOnTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinOnTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinOnTypeEnum FULL
public static final JoinOnTypeEnum LEFT
public static final JoinOnTypeEnum RIGHT
public static final JoinOnTypeEnum INNER
public static JoinOnTypeEnum[] values()
for (JoinOnTypeEnum c : JoinOnTypeEnum.values()) System.out.println(c);
public static JoinOnTypeEnum 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 © 2020 IBIT程序猿. All rights reserved.