Package com.creditcall.chipdnamobile
Enum PaymentPlatformStatus.PaymentPlatformState
- java.lang.Object
-
- java.lang.Enum<PaymentPlatformStatus.PaymentPlatformState>
-
- com.creditcall.chipdnamobile.PaymentPlatformStatus.PaymentPlatformState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PaymentPlatformStatus.PaymentPlatformState>
- Enclosing class:
- PaymentPlatformStatus
public static enum PaymentPlatformStatus.PaymentPlatformState extends java.lang.Enum<PaymentPlatformStatus.PaymentPlatformState>
Payment platform connection state.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AvailableUnavailable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PaymentPlatformStatus.PaymentPlatformStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PaymentPlatformStatus.PaymentPlatformState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unavailable
public static final PaymentPlatformStatus.PaymentPlatformState Unavailable
-
Available
public static final PaymentPlatformStatus.PaymentPlatformState Available
-
-
Method Detail
-
values
public static PaymentPlatformStatus.PaymentPlatformState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PaymentPlatformStatus.PaymentPlatformState c : PaymentPlatformStatus.PaymentPlatformState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentPlatformStatus.PaymentPlatformState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-