public static enum Order.ResentStatus extends Enum<Order.ResentStatus>
Enum Constant and Description |
---|
_UNKNOWN |
FULLY_RESENT |
PARTIALLY_RESENT |
Modifier and Type | Method and Description |
---|---|
static Order.ResentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order.ResentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order.ResentStatus FULLY_RESENT
public static final Order.ResentStatus PARTIALLY_RESENT
public static final Order.ResentStatus _UNKNOWN
public static Order.ResentStatus[] values()
for (Order.ResentStatus c : Order.ResentStatus.values()) System.out.println(c);
public static Order.ResentStatus 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 ChargeBee. All rights reserved.