Package redis.clients.jedis.bloom
Enum RedisBloomProtocol.RedisBloomKeyword
- java.lang.Object
-
- java.lang.Enum<RedisBloomProtocol.RedisBloomKeyword>
-
- redis.clients.jedis.bloom.RedisBloomProtocol.RedisBloomKeyword
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RedisBloomProtocol.RedisBloomKeyword>,Rawable
- Enclosing class:
- RedisBloomProtocol
public static enum RedisBloomProtocol.RedisBloomKeyword extends java.lang.Enum<RedisBloomProtocol.RedisBloomKeyword> implements Rawable
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUCKETSIZECAPACITYCOMPRESSIONERROREXPANSIONITEMSMAXITERATIONSNOCREATENONSCALINGOVERRIDEWEIGHTSWITHCOUNT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getRaw()Get byte array representation.static RedisBloomProtocol.RedisBloomKeywordvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RedisBloomProtocol.RedisBloomKeyword[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAPACITY
public static final RedisBloomProtocol.RedisBloomKeyword CAPACITY
-
ERROR
public static final RedisBloomProtocol.RedisBloomKeyword ERROR
-
NOCREATE
public static final RedisBloomProtocol.RedisBloomKeyword NOCREATE
-
EXPANSION
public static final RedisBloomProtocol.RedisBloomKeyword EXPANSION
-
NONSCALING
public static final RedisBloomProtocol.RedisBloomKeyword NONSCALING
-
BUCKETSIZE
public static final RedisBloomProtocol.RedisBloomKeyword BUCKETSIZE
-
MAXITERATIONS
public static final RedisBloomProtocol.RedisBloomKeyword MAXITERATIONS
-
ITEMS
public static final RedisBloomProtocol.RedisBloomKeyword ITEMS
-
WEIGHTS
public static final RedisBloomProtocol.RedisBloomKeyword WEIGHTS
-
COMPRESSION
public static final RedisBloomProtocol.RedisBloomKeyword COMPRESSION
-
OVERRIDE
public static final RedisBloomProtocol.RedisBloomKeyword OVERRIDE
-
WITHCOUNT
public static final RedisBloomProtocol.RedisBloomKeyword WITHCOUNT
-
-
Method Detail
-
values
public static RedisBloomProtocol.RedisBloomKeyword[] 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 (RedisBloomProtocol.RedisBloomKeyword c : RedisBloomProtocol.RedisBloomKeyword.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RedisBloomProtocol.RedisBloomKeyword 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
-
-