public enum AutoIncrementType extends Enum<AutoIncrementType>
| Enum Constant and Description |
|---|
GROUP |
SIMPLE |
SIMPLE_CACHE |
TIME |
| Modifier and Type | Method and Description |
|---|---|
String |
getKeyword() |
static AutoIncrementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoIncrementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoIncrementType GROUP
public static final AutoIncrementType SIMPLE
public static final AutoIncrementType SIMPLE_CACHE
public static final AutoIncrementType TIME
public static AutoIncrementType[] values()
for (AutoIncrementType c : AutoIncrementType.values()) System.out.println(c);
public static AutoIncrementType 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 getKeyword()
Copyright © 2013–2019 Alibaba Group. All rights reserved.