Class NonTokenizingAnalyzer
- java.lang.Object
-
- org.apache.cassandra.index.sasi.analyzer.AbstractAnalyzer
-
- org.apache.cassandra.index.sasi.analyzer.NonTokenizingAnalyzer
-
- All Implemented Interfaces:
java.util.Iterator<java.nio.ByteBuffer>
public class NonTokenizingAnalyzer extends AbstractAnalyzer
Analyzer that does *not* tokenize the input. Optionally will apply filters for the input output as defined in analyzers options
-
-
Field Summary
-
Fields inherited from class org.apache.cassandra.index.sasi.analyzer.AbstractAnalyzer
next
-
-
Constructor Summary
Constructors Constructor Description NonTokenizingAnalyzer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()voidinit(java.util.Map<java.lang.String,java.lang.String> options, AbstractType<?> validator)voidinit(NonTokenizingOptions tokenizerOptions, AbstractType<?> validator)booleanisCompatibleWith(AbstractType<?> validator)Test whether the given validator is compatible with the underlying analyzer.voidreset(java.nio.ByteBuffer input)voidvalidate(java.util.Map<java.lang.String,java.lang.String> options, ColumnMetadata cm)-
Methods inherited from class org.apache.cassandra.index.sasi.analyzer.AbstractAnalyzer
isTokenizing, next, normalize, remove
-
-
-
-
Method Detail
-
validate
public void validate(java.util.Map<java.lang.String,java.lang.String> options, ColumnMetadata cm) throws ConfigurationException- Overrides:
validatein classAbstractAnalyzer- Throws:
ConfigurationException
-
init
public void init(java.util.Map<java.lang.String,java.lang.String> options, AbstractType<?> validator)- Specified by:
initin classAbstractAnalyzer
-
init
public void init(NonTokenizingOptions tokenizerOptions, AbstractType<?> validator)
-
hasNext
public boolean hasNext()
-
reset
public void reset(java.nio.ByteBuffer input)
- Specified by:
resetin classAbstractAnalyzer
-
isCompatibleWith
public boolean isCompatibleWith(AbstractType<?> validator)
Description copied from class:AbstractAnalyzerTest whether the given validator is compatible with the underlying analyzer.- Specified by:
isCompatibleWithin classAbstractAnalyzer- Parameters:
validator- the validator to test the compatibility with- Returns:
- true if the give validator is compatible, false otherwise
-
-