public static enum Plugin.ModelClassType extends Enum<Plugin.ModelClassType>
Enum Constant and Description |
---|
BASE_RECORD |
PRIMARY_KEY |
RECORD_WITH_BLOBS |
Modifier and Type | Method and Description |
---|---|
static Plugin.ModelClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin.ModelClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin.ModelClassType PRIMARY_KEY
public static final Plugin.ModelClassType BASE_RECORD
public static final Plugin.ModelClassType RECORD_WITH_BLOBS
public static Plugin.ModelClassType[] values()
for (Plugin.ModelClassType c : Plugin.ModelClassType.values()) System.out.println(c);
public static Plugin.ModelClassType 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 © 2010–2018 MyBatis.org. All rights reserved.