Interface WeaviateProtoSearchGet.SortByOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAscending()
      bool ascending = 1;
      String getPath​(int index)
      currently only supports one entry (eg just properties, no refs).
      com.google.protobuf.ByteString getPathBytes​(int index)
      currently only supports one entry (eg just properties, no refs).
      int getPathCount()
      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.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getAscending

        boolean getAscending()
        bool ascending = 1;
        Returns:
        The ascending.
      • getPathList

        List<String> getPathList()
         currently only supports one entry (eg just properties, no refs). But the
         weaviate datastructure already has paths in it and this makes it easily
         extendable in the future
         protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
         
        repeated string path = 2;
        Returns:
        A list containing the path.
      • getPathCount

        int getPathCount()
         currently only supports one entry (eg just properties, no refs). But the
         weaviate datastructure already has paths in it and this makes it easily
         extendable in the future
         protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
         
        repeated string path = 2;
        Returns:
        The count of path.
      • getPath

        String getPath​(int index)
         currently only supports one entry (eg just properties, no refs). But the
         weaviate datastructure already has paths in it and this makes it easily
         extendable in the future
         protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
         
        repeated string path = 2;
        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 the
         weaviate datastructure already has paths in it and this makes it easily
         extendable in the future
         protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED
         
        repeated string path = 2;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the path at the given index.