public enum SetItemTypeEnum extends Enum<SetItemTypeEnum>
Enum Constant and Description |
---|
DECREASE
减少
|
INCREASE
增加
|
VALUE
设置值
|
Modifier and Type | Method and Description |
---|---|
static SetItemTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SetItemTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetItemTypeEnum VALUE
public static final SetItemTypeEnum INCREASE
public static final SetItemTypeEnum DECREASE
public static SetItemTypeEnum[] values()
for (SetItemTypeEnum c : SetItemTypeEnum.values()) System.out.println(c);
public static SetItemTypeEnum 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 © 2020 IBIT程序猿. All rights reserved.