public enum BucketType extends Enum<BucketType>
The type of the bucket.
Enum Constant and Description |
---|
COUCHBASE
The couchbase bucket type.
|
MEMCACHED
The memcached bucket type.
|
Modifier and Type | Method and Description |
---|---|
static BucketType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BucketType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BucketType COUCHBASE
public static final BucketType MEMCACHED
public static BucketType[] values()
for (BucketType c : BucketType.values()) System.out.println(c);
public static BucketType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014 Couchbase, Inc.