Package com.rabbitmq.stream.impl
Enum Client.ShutdownContext.ShutdownReason
- java.lang.Object
-
- java.lang.Enum<Client.ShutdownContext.ShutdownReason>
-
- com.rabbitmq.stream.impl.Client.ShutdownContext.ShutdownReason
-
- All Implemented Interfaces:
Serializable
,Comparable<Client.ShutdownContext.ShutdownReason>
- Enclosing class:
- Client.ShutdownContext
public static enum Client.ShutdownContext.ShutdownReason extends Enum<Client.ShutdownContext.ShutdownReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_CLOSE
HEARTBEAT_FAILURE
SERVER_CLOSE
UNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Client.ShutdownContext.ShutdownReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static Client.ShutdownContext.ShutdownReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_CLOSE
public static final Client.ShutdownContext.ShutdownReason CLIENT_CLOSE
-
SERVER_CLOSE
public static final Client.ShutdownContext.ShutdownReason SERVER_CLOSE
-
HEARTBEAT_FAILURE
public static final Client.ShutdownContext.ShutdownReason HEARTBEAT_FAILURE
-
UNKNOWN
public static final Client.ShutdownContext.ShutdownReason UNKNOWN
-
-
Method Detail
-
values
public static Client.ShutdownContext.ShutdownReason[] 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 (Client.ShutdownContext.ShutdownReason c : Client.ShutdownContext.ShutdownReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Client.ShutdownContext.ShutdownReason 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
-
-