Enum CommandKeyword
- java.lang.Object
-
- java.lang.Enum<CommandKeyword>
-
- com.redislabs.lettusearch.impl.protocol.CommandKeyword
-
- All Implemented Interfaces:
io.lettuce.core.protocol.ProtocolKeyword,java.io.Serializable,java.lang.Comparable<CommandKeyword>
public enum CommandKeyword extends java.lang.Enum<CommandKeyword> implements io.lettuce.core.protocol.ProtocolKeyword
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description byte[]bytes
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBytes()static CommandKeywordvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CommandKeyword[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final CommandKeyword ADD
-
MAXTEXTFIELDS
public static final CommandKeyword MAXTEXTFIELDS
-
TEMPORARY
public static final CommandKeyword TEMPORARY
-
NOOFFSETS
public static final CommandKeyword NOOFFSETS
-
NOHL
public static final CommandKeyword NOHL
-
NOFIELDS
public static final CommandKeyword NOFIELDS
-
NOFREQS
public static final CommandKeyword NOFREQS
-
STOPWORDS
public static final CommandKeyword STOPWORDS
-
SCHEMA
public static final CommandKeyword SCHEMA
-
TEXT
public static final CommandKeyword TEXT
-
WEIGHT
public static final CommandKeyword WEIGHT
-
NUMERIC
public static final CommandKeyword NUMERIC
-
GEO
public static final CommandKeyword GEO
-
PHONETIC
public static final CommandKeyword PHONETIC
-
TAG
public static final CommandKeyword TAG
-
SEPARATOR
public static final CommandKeyword SEPARATOR
-
SORTABLE
public static final CommandKeyword SORTABLE
-
NOSTEM
public static final CommandKeyword NOSTEM
-
NOINDEX
public static final CommandKeyword NOINDEX
-
NOSAVE
public static final CommandKeyword NOSAVE
-
REPLACE
public static final CommandKeyword REPLACE
-
PARTIAL
public static final CommandKeyword PARTIAL
-
LANGUAGE
public static final CommandKeyword LANGUAGE
-
PAYLOAD
public static final CommandKeyword PAYLOAD
-
IF
public static final CommandKeyword IF
-
FIELDS
public static final CommandKeyword FIELDS
-
NOCONTENT
public static final CommandKeyword NOCONTENT
-
VERBATIM
public static final CommandKeyword VERBATIM
-
NOSTOPWORDS
public static final CommandKeyword NOSTOPWORDS
-
FUZZY
public static final CommandKeyword FUZZY
-
WITHPAYLOADS
public static final CommandKeyword WITHPAYLOADS
-
WITHSORTKEYS
public static final CommandKeyword WITHSORTKEYS
-
WITHSCORES
public static final CommandKeyword WITHSCORES
-
MAX
public static final CommandKeyword MAX
-
LIMIT
public static final CommandKeyword LIMIT
-
SORTBY
public static final CommandKeyword SORTBY
-
ASC
public static final CommandKeyword ASC
-
DESC
public static final CommandKeyword DESC
-
INCR
public static final CommandKeyword INCR
-
DD
public static final CommandKeyword DD
-
LOAD
public static final CommandKeyword LOAD
-
APPLY
public static final CommandKeyword APPLY
-
AS
public static final CommandKeyword AS
-
FILTER
public static final CommandKeyword FILTER
-
GROUPBY
public static final CommandKeyword GROUPBY
-
REDUCE
public static final CommandKeyword REDUCE
-
COUNT
public static final CommandKeyword COUNT
-
COUNT_DISTINCT
public static final CommandKeyword COUNT_DISTINCT
-
COUNT_DISTINCTISH
public static final CommandKeyword COUNT_DISTINCTISH
-
SUM
public static final CommandKeyword SUM
-
MIN
public static final CommandKeyword MIN
-
AVG
public static final CommandKeyword AVG
-
STDDEV
public static final CommandKeyword STDDEV
-
QUANTILE
public static final CommandKeyword QUANTILE
-
TOLIST
public static final CommandKeyword TOLIST
-
FIRST_VALUE
public static final CommandKeyword FIRST_VALUE
-
RANDOM_SAMPLE
public static final CommandKeyword RANDOM_SAMPLE
-
BY
public static final CommandKeyword BY
-
INKEYS
public static final CommandKeyword INKEYS
-
INFIELDS
public static final CommandKeyword INFIELDS
-
RETURN
public static final CommandKeyword RETURN
-
HIGHLIGHT
public static final CommandKeyword HIGHLIGHT
-
TAGS
public static final CommandKeyword TAGS
-
WITHCURSOR
public static final CommandKeyword WITHCURSOR
-
MAXIDLE
public static final CommandKeyword MAXIDLE
-
READ
public static final CommandKeyword READ
-
DEL
public static final CommandKeyword DEL
-
ON
public static final CommandKeyword ON
-
PREFIX
public static final CommandKeyword PREFIX
-
LANGUAGE_FIELD
public static final CommandKeyword LANGUAGE_FIELD
-
SCORE
public static final CommandKeyword SCORE
-
SCORE_FIELD
public static final CommandKeyword SCORE_FIELD
-
PAYLOAD_FIELD
public static final CommandKeyword PAYLOAD_FIELD
-
NOINITIALSCAN
public static final CommandKeyword NOINITIALSCAN
-
-
Method Detail
-
values
public static CommandKeyword[] 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 (CommandKeyword c : CommandKeyword.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommandKeyword 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
-
getBytes
public byte[] getBytes()
- Specified by:
getBytesin interfaceio.lettuce.core.protocol.ProtocolKeyword
-
-