Enum CardControlSettings.Region
- java.lang.Object
-
- java.lang.Enum<CardControlSettings.Region>
-
- com.thalesgroup.gemalto.d1.card.cardservice.CardControlSettings.Region
-
- All Implemented Interfaces:
Serializable,Comparable<CardControlSettings.Region>
- Enclosing class:
- CardControlSettings
public static enum CardControlSettings.Region extends Enum<CardControlSettings.Region>
Enumeration type for card geographical region settings.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CardControlSettings.RegionfromString(String value)StringtoString()static CardControlSettings.RegionvalueOf(String name)Returns the enum constant of this type with the specified name.static CardControlSettings.Region[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCHENGEN_AREA
public static final CardControlSettings.Region SCHENGEN_AREA
-
EASTERN_EUROPE
public static final CardControlSettings.Region EASTERN_EUROPE
-
WESTERN_EUROPE
public static final CardControlSettings.Region WESTERN_EUROPE
-
NORTHERN_EUROPE
public static final CardControlSettings.Region NORTHERN_EUROPE
-
SOUTHERN_EUROPE
public static final CardControlSettings.Region SOUTHERN_EUROPE
-
MIDDLE_EAST
public static final CardControlSettings.Region MIDDLE_EAST
-
NORTH_AFRICA
public static final CardControlSettings.Region NORTH_AFRICA
-
EAST_AFRICA
public static final CardControlSettings.Region EAST_AFRICA
-
CENTRAL_AFRICA
public static final CardControlSettings.Region CENTRAL_AFRICA
-
SOUTHERN_AFRICA
public static final CardControlSettings.Region SOUTHERN_AFRICA
-
WEST_AFRICA
public static final CardControlSettings.Region WEST_AFRICA
-
CENTRAL_ASIA
public static final CardControlSettings.Region CENTRAL_ASIA
-
EAST_ASIA
public static final CardControlSettings.Region EAST_ASIA
-
WEST_ASIA
public static final CardControlSettings.Region WEST_ASIA
-
SOUTH_ASIA
public static final CardControlSettings.Region SOUTH_ASIA
-
SOUTHEAST_ASIA
public static final CardControlSettings.Region SOUTHEAST_ASIA
-
OCEANIA
public static final CardControlSettings.Region OCEANIA
-
CARIBBEAN
public static final CardControlSettings.Region CARIBBEAN
-
NORTH_AMERICA
public static final CardControlSettings.Region NORTH_AMERICA
-
CENTRAL_AMERICA
public static final CardControlSettings.Region CENTRAL_AMERICA
-
SOUTH_AMERICA
public static final CardControlSettings.Region SOUTH_AMERICA
-
-
Method Detail
-
values
public static CardControlSettings.Region[] 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 (CardControlSettings.Region c : CardControlSettings.Region.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CardControlSettings.Region 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
-
fromString
@Nullable public static CardControlSettings.Region fromString(String value)
-
toString
@NonNull public String toString()
- Overrides:
toStringin classEnum<CardControlSettings.Region>
-
-