public enum DbUpdateEnum extends Enum<DbUpdateEnum>
Enum Constant and Description |
---|
DECR
递减
|
DECR_UNSIGNED
递减_无符号
|
INCREMENT
递增
|
NORMAL
正常
|
Modifier and Type | Method and Description |
---|---|
static DbUpdateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbUpdateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbUpdateEnum NORMAL
public static final DbUpdateEnum INCREMENT
public static final DbUpdateEnum DECR
public static final DbUpdateEnum DECR_UNSIGNED
public static DbUpdateEnum[] values()
for (DbUpdateEnum c : DbUpdateEnum.values()) System.out.println(c);
public static DbUpdateEnum 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 © 2022 Pivotal Software, Inc.. All rights reserved.