Package com.ig.orchestrations.fixp
Enum EstablishmentReject.Code
- java.lang.Object
-
- java.lang.Enum<EstablishmentReject.Code>
-
- com.ig.orchestrations.fixp.EstablishmentReject.Code
-
- All Implemented Interfaces:
Serializable,Comparable<EstablishmentReject.Code>
- Enclosing class:
- EstablishmentReject
public static enum EstablishmentReject.Code extends Enum<EstablishmentReject.Code>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADY_ESTABLISHEDCREDENTIALSKEEPALIVE_INTERVALSESSION_BLOCKEDUNNEGOTIATEDUNSPECIFIED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EstablishmentReject.CodefromValue(String value)StringtoString()Stringvalue()static EstablishmentReject.CodevalueOf(String name)Returns the enum constant of this type with the specified name.static EstablishmentReject.Code[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNNEGOTIATED
public static final EstablishmentReject.Code UNNEGOTIATED
-
ALREADY_ESTABLISHED
public static final EstablishmentReject.Code ALREADY_ESTABLISHED
-
SESSION_BLOCKED
public static final EstablishmentReject.Code SESSION_BLOCKED
-
KEEPALIVE_INTERVAL
public static final EstablishmentReject.Code KEEPALIVE_INTERVAL
-
CREDENTIALS
public static final EstablishmentReject.Code CREDENTIALS
-
UNSPECIFIED
public static final EstablishmentReject.Code UNSPECIFIED
-
-
Method Detail
-
values
public static EstablishmentReject.Code[] 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 (EstablishmentReject.Code c : EstablishmentReject.Code.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EstablishmentReject.Code 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<EstablishmentReject.Code>
-
value
public String value()
-
fromValue
public static EstablishmentReject.Code fromValue(String value)
-
-