Class QueryQualifierBuilder
java.lang.Object
org.springframework.data.aerospike.query.qualifier.BaseQualifierBuilder<QualifierBuilder>
org.springframework.data.aerospike.repository.query.QueryQualifierBuilder
- All Implemented Interfaces:
IQualifierBuilder
-
Method Summary
Modifier and TypeMethodDescriptionboolean
setBinName
(String field) Set bin name.setBinType
(com.aerospike.client.exp.Exp.Type type) Set bin type.setCtxArray
(com.aerospike.client.cdt.CTX[] ctxArray) Set CTX[].setDotPath
(List<String> dotPath) Set full path from bin name to required element.setIgnoreCase
(boolean ignoreCase) setInnerQbFilterOperation
(FilterOperation operationType) Set FilterOperation for qualifier.setKey
(com.aerospike.client.Value key) Set Map key.Set Map key placeholder (for "Map keys containing" queries).setNestedKey
(com.aerospike.client.Value key) For "find by one level nested map containing" queries.setNestedType
(int type) For "find by one level nested map containing" queries.setServerVersionSupport
(ServerVersionSupport serverVersionSupport) Set server version support.Methods inherited from class org.springframework.data.aerospike.query.qualifier.BaseQualifierBuilder
build, getFilterOperation, getIgnoreCase, getMap, getPath, getSecondValue, getValue, setFilterOperation, setSecondValue, setValue
-
Method Details
-
setInnerQbFilterOperation
Set FilterOperation for qualifier. Mandatory parameter. -
setIgnoreCase
-
setBinName
Set bin name. Mandatory parameter for bin query. -
setBinType
Set bin type. -
setDotPath
Set full path from bin name to required element. -
setCtxArray
Set CTX[]. -
setKey
Set Map key.Use one of the Value get() methods (
Value.get(int)
,Value.get(String)
etc.) to firstly read the key into aValue
object. -
setNestedKey
For "find by one level nested map containing" queries. Set nested Map key.Use one of the Value get() methods (
Value.get(int)
,Value.get(String)
etc.) to firstly read the key into aValue
object. -
setNestedType
For "find by one level nested map containing" queries. Set the type of the nested map value usingParticleType
. -
setServerVersionSupport
Set server version support. -
setMapKeyPlaceholder
Set Map key placeholder (for "Map keys containing" queries). -
hasDotPath
public boolean hasDotPath()
-