Enum CollectionMapRefreshFailedEvent.Reason
java.lang.Object
java.lang.Enum<CollectionMapRefreshFailedEvent.Reason>
com.couchbase.client.core.cnc.events.config.CollectionMapRefreshFailedEvent.Reason
- All Implemented Interfaces:
Serializable
,Comparable<CollectionMapRefreshFailedEvent.Reason>
- Enclosing class:
- CollectionMapRefreshFailedEvent
public static enum CollectionMapRefreshFailedEvent.Reason
extends Enum<CollectionMapRefreshFailedEvent.Reason>
-
Enum Constant Summary
Enum ConstantDescriptionThe server returned success, but it did not send a collection id.Dispatching the operation failed for some reason (see cause).The client sent an invalid request to the server.Collections are nut supported by the server.An unknown failure occurred (see cause).The collection the client asked for is unknown to the server.The scope the client asked for is unknown to the server. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FAILED
Dispatching the operation failed for some reason (see cause). -
NOT_SUPPORTED
Collections are nut supported by the server. -
UNKNOWN_COLLECTION
The collection the client asked for is unknown to the server. -
UNKNOWN_SCOPE
The scope the client asked for is unknown to the server. -
COLLECTION_ID_NOT_PRESENT
The server returned success, but it did not send a collection id. -
INVALID_REQUEST
The client sent an invalid request to the server. -
UNKNOWN
An unknown failure occurred (see cause).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-