public enum BizState extends Enum<BizState>
| Enum Constant and Description |
|---|
ACTIVATED |
BROKEN |
DEACTIVATED |
RESOLVED |
UNRESOLVED |
| Modifier and Type | Method and Description |
|---|---|
String |
getBizState() |
static BizState |
of(String state) |
String |
toString() |
static BizState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BizState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BizState UNRESOLVED
public static final BizState RESOLVED
public static final BizState ACTIVATED
public static final BizState DEACTIVATED
public static final BizState BROKEN
public static BizState[] values()
for (BizState c : BizState.values()) System.out.println(c);
public static BizState 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 getBizState()
Copyright © 2024. All rights reserved.