public enum JoinMode extends Enum<JoinMode>
| Enum Constant and Description |
|---|
CRUD
CRUD, `crud` configured, the system will look up target configuration by `CRUD` standard way.
|
DAO
DAO, `classDao` configured, directly to seek target configuration
|
DEFINE
DEFINE, `classDefine` configured, Reserved in future.
|
| Modifier and Type | Method and Description |
|---|---|
static JoinMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinMode CRUD
public static final JoinMode DAO
public static final JoinMode DEFINE
public static JoinMode[] values()
for (JoinMode c : JoinMode.values()) System.out.println(c);
public static JoinMode 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 © 2021. All rights reserved.