Package com.onslip360
Enum API.CardReceiptMetadata.EntryMode
- java.lang.Object
-
- java.lang.Enum<API.CardReceiptMetadata.EntryMode>
-
- com.onslip360.API.CardReceiptMetadata.EntryMode
-
- All Implemented Interfaces:
Serializable
,Comparable<API.CardReceiptMetadata.EntryMode>
- Enclosing class:
- API.CardReceiptMetadata
public static enum API.CardReceiptMetadata.EntryMode extends Enum<API.CardReceiptMetadata.EntryMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
CHIP
CONTACTLESS
MAGSTRIPE
MANUAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.CardReceiptMetadata.EntryMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.CardReceiptMetadata.EntryMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHIP
public static final API.CardReceiptMetadata.EntryMode CHIP
-
MAGSTRIPE
public static final API.CardReceiptMetadata.EntryMode MAGSTRIPE
-
MANUAL
public static final API.CardReceiptMetadata.EntryMode MANUAL
-
CONTACTLESS
public static final API.CardReceiptMetadata.EntryMode CONTACTLESS
-
__
public static final API.CardReceiptMetadata.EntryMode __
-
-
Method Detail
-
values
public static API.CardReceiptMetadata.EntryMode[] 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.CardReceiptMetadata.EntryMode c : API.CardReceiptMetadata.EntryMode.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.CardReceiptMetadata.EntryMode 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
-
-