Package com.onslip360
Enum API.CardMetadata.Status
- java.lang.Object
-
- java.lang.Enum<API.CardMetadata.Status>
-
- com.onslip360.API.CardMetadata.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<API.CardMetadata.Status>
- Enclosing class:
- API.CardMetadata
public static enum API.CardMetadata.Status extends Enum<API.CardMetadata.Status>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.CardMetadata.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.CardMetadata.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVED_ONLINE
public static final API.CardMetadata.Status APPROVED_ONLINE
-
APPROVED_OFFLINE
public static final API.CardMetadata.Status APPROVED_OFFLINE
-
FAILED
public static final API.CardMetadata.Status FAILED
-
CANCELLED
public static final API.CardMetadata.Status CANCELLED
-
TECHNICAL_ERROR
public static final API.CardMetadata.Status TECHNICAL_ERROR
-
LOCALLY_DENIED
public static final API.CardMetadata.Status LOCALLY_DENIED
-
ISSUER_DENIED
public static final API.CardMetadata.Status ISSUER_DENIED
-
ISSUER_UNAVAILABLE
public static final API.CardMetadata.Status ISSUER_UNAVAILABLE
-
ONLINE_REQUIRED
public static final API.CardMetadata.Status ONLINE_REQUIRED
-
SIGNATURE_REQUIRED
public static final API.CardMetadata.Status SIGNATURE_REQUIRED
-
UPDATE_REQUIRED
public static final API.CardMetadata.Status UPDATE_REQUIRED
-
CARD_BLOCKED
public static final API.CardMetadata.Status CARD_BLOCKED
-
SNF_FULL
public static final API.CardMetadata.Status SNF_FULL
-
CASHBACK_FORBIDDEN
public static final API.CardMetadata.Status CASHBACK_FORBIDDEN
-
INVALID_MAC
public static final API.CardMetadata.Status INVALID_MAC
-
NETWORK_ERROR
public static final API.CardMetadata.Status NETWORK_ERROR
-
INVALID_CARD
public static final API.CardMetadata.Status INVALID_CARD
-
MISMATCH
public static final API.CardMetadata.Status MISMATCH
-
__
public static final API.CardMetadata.Status __
-
-
Method Detail
-
values
public static API.CardMetadata.Status[] 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 (API.CardMetadata.Status c : API.CardMetadata.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.CardMetadata.Status valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-