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