public enum PartyDetailStatus extends Enum<PartyDetailStatus>
Enum Constant and Description |
---|
ACTIVE
Active.
|
NO_VALUE
Identifies no value.
|
REJECTED
Rejected.
|
SUSPEND
Suspend.
|
Modifier and Type | Method and Description |
---|---|
static PartyDetailStatus |
forValue(byte value) |
byte |
getValue() |
static PartyDetailStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PartyDetailStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartyDetailStatus NO_VALUE
public static final PartyDetailStatus ACTIVE
public static final PartyDetailStatus SUSPEND
public static final PartyDetailStatus REJECTED
public static PartyDetailStatus[] values()
for (PartyDetailStatus c : PartyDetailStatus.values()) System.out.println(c);
public static PartyDetailStatus 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 byte getValue()
public static PartyDetailStatus forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.