Enum RoamingCriteria
- java.lang.Object
-
- java.lang.Enum<RoamingCriteria>
-
- co.ecg.alpaca.toolkit.generated.enums.RoamingCriteria
-
- All Implemented Interfaces:
Serializable
,Comparable<RoamingCriteria>
public enum RoamingCriteria extends Enum<RoamingCriteria>
Identifies the roaming criteria to be matched.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISREGARDROAMING
INHOMENETWORK
INROAMINGNETWORK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RoamingCriteria
get(String value)
static RoamingCriteria[]
getArray(String[] values)
String
toString()
String
value()
static RoamingCriteria
valueOf(String name)
Returns the enum constant of this type with the specified name.static RoamingCriteria[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INHOMENETWORK
public static final RoamingCriteria INHOMENETWORK
-
INROAMINGNETWORK
public static final RoamingCriteria INROAMINGNETWORK
-
DISREGARDROAMING
public static final RoamingCriteria DISREGARDROAMING
-
-
Method Detail
-
values
public static RoamingCriteria[] 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 (RoamingCriteria c : RoamingCriteria.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RoamingCriteria 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
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<RoamingCriteria>
-
get
public static RoamingCriteria get(String value)
-
getArray
public static RoamingCriteria[] getArray(String[] values)
-
-