public static enum Plugin.ModelClassType extends Enum<Plugin.ModelClassType>
| Enum Constant and Description |
|---|
BASE_RECORD
The base record.
|
PRIMARY_KEY
The primary key.
|
RECORD_WITH_BLOBS
The 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 © 2006–2016 MyBatis.org. All rights reserved.