Interface WeaviateProtoSearchGet.GroupByOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WeaviateProtoSearchGet.GroupBy,WeaviateProtoSearchGet.GroupBy.Builder
- Enclosing class:
- WeaviateProtoSearchGet
public static interface WeaviateProtoSearchGet.GroupByOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetNumberOfGroups()int32 number_of_groups = 2;intgetObjectsPerGroup()int32 objects_per_group = 3;StringgetPath(int index)currently only supports one entry (eg just properties, no refs).com.google.protobuf.ByteStringgetPathBytes(int index)currently only supports one entry (eg just properties, no refs).intgetPathCount()currently only supports one entry (eg just properties, no refs).List<String>getPathList()currently only supports one entry (eg just properties, no refs).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPathList
List<String> getPathList()
currently only supports one entry (eg just properties, no refs). But might be extended in the future. protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
repeated string path = 1;- Returns:
- A list containing the path.
-
getPathCount
int getPathCount()
currently only supports one entry (eg just properties, no refs). But might be extended in the future. protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
repeated string path = 1;- Returns:
- The count of path.
-
getPath
String getPath(int index)
currently only supports one entry (eg just properties, no refs). But might be extended in the future. protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
repeated string path = 1;- Parameters:
index- The index of the element to return.- Returns:
- The path at the given index.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes(int index)
currently only supports one entry (eg just properties, no refs). But might be extended in the future. protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
repeated string path = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the path at the given index.
-
getNumberOfGroups
int getNumberOfGroups()
int32 number_of_groups = 2;- Returns:
- The numberOfGroups.
-
getObjectsPerGroup
int getObjectsPerGroup()
int32 objects_per_group = 3;- Returns:
- The objectsPerGroup.
-
-