Enum CallParkRecallTo
- java.lang.Object
-
- java.lang.Enum<CallParkRecallTo>
-
- co.ecg.alpaca.toolkit.generated.enums.CallParkRecallTo
-
- All Implemented Interfaces:
Serializable
,Comparable<CallParkRecallTo>
public enum CallParkRecallTo extends Enum<CallParkRecallTo>
Call Park recall user options- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTERNATEUSERONLY
PARKINGUSERONLY
PARKINGUSERTHENALTERNATEUSER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallParkRecallTo
get(String value)
static CallParkRecallTo[]
getArray(String[] values)
String
toString()
String
value()
static CallParkRecallTo
valueOf(String name)
Returns the enum constant of this type with the specified name.static CallParkRecallTo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARKINGUSERONLY
public static final CallParkRecallTo PARKINGUSERONLY
-
PARKINGUSERTHENALTERNATEUSER
public static final CallParkRecallTo PARKINGUSERTHENALTERNATEUSER
-
ALTERNATEUSERONLY
public static final CallParkRecallTo ALTERNATEUSERONLY
-
-
Method Detail
-
values
public static CallParkRecallTo[] 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 (CallParkRecallTo c : CallParkRecallTo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CallParkRecallTo 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<CallParkRecallTo>
-
get
public static CallParkRecallTo get(String value)
-
getArray
public static CallParkRecallTo[] getArray(String[] values)
-
-