Uses of Class
io.qdrant.client.grpc.Points.Condition
-
Uses of Points.Condition in io.qdrant.client.grpc
Modifier and TypeMethodDescriptionPoints.Condition.Builder.build()
Points.Condition.Builder.buildPartial()
static Points.Condition
Points.Condition.getDefaultInstance()
Points.Condition.Builder.getDefaultInstanceForType()
Points.Condition.getDefaultInstanceForType()
Points.Filter.Builder.getMust
(int index) All conditions must matchPoints.Filter.getMust
(int index) All conditions must matchPoints.FilterOrBuilder.getMust
(int index) All conditions must matchPoints.Filter.Builder.getMustNot
(int index) All conditions must NOT matchPoints.Filter.getMustNot
(int index) All conditions must NOT matchPoints.FilterOrBuilder.getMustNot
(int index) All conditions must NOT matchPoints.Filter.Builder.getShould
(int index) At least one of those conditions should matchPoints.Filter.getShould
(int index) At least one of those conditions should matchPoints.FilterOrBuilder.getShould
(int index) At least one of those conditions should matchstatic Points.Condition
Points.Condition.parseDelimitedFrom
(InputStream input) static Points.Condition
Points.Condition.parseDelimitedFrom
(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.Condition
Points.Condition.parseFrom
(byte[] data) static Points.Condition
Points.Condition.parseFrom
(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.Condition
Points.Condition.parseFrom
(com.google.protobuf.ByteString data) static Points.Condition
Points.Condition.parseFrom
(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.Condition
Points.Condition.parseFrom
(com.google.protobuf.CodedInputStream input) static Points.Condition
Points.Condition.parseFrom
(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.Condition
Points.Condition.parseFrom
(InputStream input) static Points.Condition
Points.Condition.parseFrom
(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) static Points.Condition
Points.Condition.parseFrom
(ByteBuffer data) static Points.Condition
Points.Condition.parseFrom
(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) Modifier and TypeMethodDescriptionPoints.Filter.Builder.getMustList()
All conditions must matchPoints.Filter.getMustList()
All conditions must matchPoints.FilterOrBuilder.getMustList()
All conditions must matchPoints.Filter.Builder.getMustNotList()
All conditions must NOT matchPoints.Filter.getMustNotList()
All conditions must NOT matchPoints.FilterOrBuilder.getMustNotList()
All conditions must NOT matchcom.google.protobuf.Parser<Points.Condition>
Points.Condition.getParserForType()
Points.Filter.Builder.getShouldList()
At least one of those conditions should matchPoints.Filter.getShouldList()
At least one of those conditions should matchPoints.FilterOrBuilder.getShouldList()
At least one of those conditions should matchstatic com.google.protobuf.Parser<Points.Condition>
Points.Condition.parser()
Modifier and TypeMethodDescriptionPoints.Filter.Builder.addMust
(int index, Points.Condition value) All conditions must matchPoints.Filter.Builder.addMust
(Points.Condition value) All conditions must matchPoints.Filter.Builder.addMustNot
(int index, Points.Condition value) All conditions must NOT matchPoints.Filter.Builder.addMustNot
(Points.Condition value) All conditions must NOT matchPoints.Filter.Builder.addShould
(int index, Points.Condition value) At least one of those conditions should matchPoints.Filter.Builder.addShould
(Points.Condition value) At least one of those conditions should matchPoints.Condition.Builder.mergeFrom
(Points.Condition other) static Points.Condition.Builder
Points.Condition.newBuilder
(Points.Condition prototype) Points.Filter.Builder.setMust
(int index, Points.Condition value) All conditions must matchPoints.Filter.Builder.setMustNot
(int index, Points.Condition value) All conditions must NOT matchPoints.Filter.Builder.setShould
(int index, Points.Condition value) At least one of those conditions should matchModifier and TypeMethodDescriptionPoints.Filter.Builder.addAllMust
(Iterable<? extends Points.Condition> values) All conditions must matchPoints.Filter.Builder.addAllMustNot
(Iterable<? extends Points.Condition> values) All conditions must NOT matchPoints.Filter.Builder.addAllShould
(Iterable<? extends Points.Condition> values) At least one of those conditions should match -
Uses of Points.Condition in io.qdrant.client.utils
Modifier and TypeMethodDescriptionstatic Points.Condition
FilterUtil.fieldCondition
(String key, Points.GeoBoundingBox geoBoundingBox) Creates aPoints.Condition
with aPoints.FieldCondition
for geo bounding box matching.static Points.Condition
FilterUtil.fieldCondition
(String key, Points.GeoPolygon geoPolygon) Creates aPoints.Condition
with aPoints.FieldCondition
for geo polygon matching.static Points.Condition
FilterUtil.fieldCondition
(String key, Points.GeoRadius geoRadius) Creates aPoints.Condition
with aPoints.FieldCondition
for geo radius matching.static Points.Condition
FilterUtil.fieldCondition
(String key, Points.Match match) Creates aPoints.Condition
with aPoints.FieldCondition
for text matching.static Points.Condition
FilterUtil.fieldCondition
(String key, Points.Range range) Creates aPoints.Condition
with aPoints.FieldCondition
for range matching.static Points.Condition
FilterUtil.fieldCondition
(String key, Points.ValuesCount valuesCount) Creates aPoints.Condition
with aPoints.FieldCondition
for values count matching.static Points.Condition
FilterUtil.filterCondition
(Points.Filter filter) Creates aPoints.Condition
with aPoints.Filter
as a subcondition.static Points.Condition
FilterUtil.hasIdCondition
(List<Points.PointId> pointIds) Creates aPoints.Condition
with aPoints.HasIdCondition
based on a list of point IDs for ID condition matching.static Points.Condition
FilterUtil.isEmptyCondition
(String key) Creates aPoints.Condition
with anPoints.IsEmptyCondition
based on a key for empty condition matching.static Points.Condition
FilterUtil.isNullCondition
(String key) Creates aPoints.Condition
with anPoints.IsNullCondition
based on a key for null condition matching.static Points.Condition
FilterUtil.nestedCondition
(String key, Points.Filter filter) Creates aPoints.Condition
with aPoints.NestedCondition
based on a key and a nested filter.Modifier and TypeMethodDescriptionstatic Points.Filter
FilterUtil.must
(Points.Condition... mustConditions) Creates aPoints.Filter
with "must" conditions.static Points.Filter
FilterUtil.mustNot
(Points.Condition... mustNotConditions) Creates aPoints.Filter
with "must not" conditions.static Points.Filter
FilterUtil.should
(Points.Condition... shouldConditions) Creates aPoints.Filter
with "should" conditions.Modifier and TypeMethodDescriptionstatic Points.Filter
FilterUtil.must
(List<Points.Condition> mustConditions) Creates aPoints.Filter
with "must" conditions.static Points.Filter
FilterUtil.mustNot
(List<Points.Condition> mustNotConditions) Creates aPoints.Filter
with "must not" conditions.static Points.Filter
FilterUtil.should
(List<Points.Condition> shouldConditions) Creates aPoints.Filter
with "should" conditions.