Enum TerminusExpiryPolicy
- java.lang.Object
-
- java.lang.Enum<TerminusExpiryPolicy>
-
- org.apache.qpid.proton.amqp.messaging.TerminusExpiryPolicy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TerminusExpiryPolicy>
public enum TerminusExpiryPolicy extends java.lang.Enum<TerminusExpiryPolicy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTION_CLOSE
LINK_DETACH
NEVER
SESSION_END
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Symbol
getPolicy()
static TerminusExpiryPolicy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TerminusExpiryPolicy
valueOf(Symbol policy)
Returns the enum constant of this type with the specified name.static TerminusExpiryPolicy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINK_DETACH
public static final TerminusExpiryPolicy LINK_DETACH
-
SESSION_END
public static final TerminusExpiryPolicy SESSION_END
-
CONNECTION_CLOSE
public static final TerminusExpiryPolicy CONNECTION_CLOSE
-
NEVER
public static final TerminusExpiryPolicy NEVER
-
-
Method Detail
-
values
public static TerminusExpiryPolicy[] 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 (TerminusExpiryPolicy c : TerminusExpiryPolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerminusExpiryPolicy valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getPolicy
public Symbol getPolicy()
-
valueOf
public static TerminusExpiryPolicy valueOf(Symbol policy)
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:
policy
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-