public static enum RideStatusLog.StatusReasonCode extends Enum<RideStatusLog.StatusReasonCode>
Enum Constant and Description |
---|
REJECTED_PAYMENT_TECHNICAL_ERROR
Technical error during payment.
|
REJECTED_SUPPLIER_DECLINED
The supplier declined the request.
|
Modifier and Type | Method and Description |
---|---|
static RideStatusLog.StatusReasonCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RideStatusLog.StatusReasonCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RideStatusLog.StatusReasonCode REJECTED_PAYMENT_TECHNICAL_ERROR
public static final RideStatusLog.StatusReasonCode REJECTED_SUPPLIER_DECLINED
public static RideStatusLog.StatusReasonCode[] values()
for (RideStatusLog.StatusReasonCode c : RideStatusLog.StatusReasonCode.values()) System.out.println(c);
public static RideStatusLog.StatusReasonCode 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 null