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