public enum BusiFavorState extends Enum<BusiFavorState>
Enum Constant and Description |
---|
PAUSED
暂停发放
|
RUNNING
运行中
|
STOPED
已停止
|
UNAUDIT
审核中
|
Modifier and Type | Method and Description |
---|---|
static BusiFavorState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusiFavorState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusiFavorState UNAUDIT
public static final BusiFavorState RUNNING
public static final BusiFavorState STOPED
public static final BusiFavorState PAUSED
public static BusiFavorState[] values()
for (BusiFavorState c : BusiFavorState.values()) System.out.println(c);
public static BusiFavorState 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 © 2025. All rights reserved.