Interface ListItemsRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ListItemsRequest, ListItemsRequest.Builder

public interface ListItemsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    A pattern to filter for, with "?" to match any one character, "*" to match any number of characters, and "{}"s to hold a comma-separated list of possible matches.
    com.google.protobuf.ByteString
    A pattern to filter for, with "?" to match any one character, "*" to match any number of characters, and "{}"s to hold a comma-separated list of possible matches.
    The path to the directory to list.
    com.google.protobuf.ByteString
    The path to the directory to list.
    boolean
    A pattern to filter for, with "?" to match any one character, "*" to match any number of characters, and "{}"s to hold a comma-separated list of possible matches.

    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 Details

    • getPath

      String getPath()
       The path to the directory to list. empty to list top level
       
      string path = 1;
      Returns:
      The path.
    • getPathBytes

      com.google.protobuf.ByteString getPathBytes()
       The path to the directory to list. empty to list top level
       
      string path = 1;
      Returns:
      The bytes for path.
    • hasFilterGlob

      boolean hasFilterGlob()
       A pattern to filter for, with "?" to match any one character, "*" to match any number of characters, and "{}"s
       to hold a comma-separated list of possible matches. The format follows Java's FileSystem.getPathMatcher (see
       https://docs.oracle.com/javase/8/docs/api/java/nio/file/FileSystem.html#getPathMatcher-java.lang.String-),
       except without allowing subdirectories with / or **.
       
      optional string filter_glob = 4;
      Returns:
      Whether the filterGlob field is set.
    • getFilterGlob

      String getFilterGlob()
       A pattern to filter for, with "?" to match any one character, "*" to match any number of characters, and "{}"s
       to hold a comma-separated list of possible matches. The format follows Java's FileSystem.getPathMatcher (see
       https://docs.oracle.com/javase/8/docs/api/java/nio/file/FileSystem.html#getPathMatcher-java.lang.String-),
       except without allowing subdirectories with / or **.
       
      optional string filter_glob = 4;
      Returns:
      The filterGlob.
    • getFilterGlobBytes

      com.google.protobuf.ByteString getFilterGlobBytes()
       A pattern to filter for, with "?" to match any one character, "*" to match any number of characters, and "{}"s
       to hold a comma-separated list of possible matches. The format follows Java's FileSystem.getPathMatcher (see
       https://docs.oracle.com/javase/8/docs/api/java/nio/file/FileSystem.html#getPathMatcher-java.lang.String-),
       except without allowing subdirectories with / or **.
       
      optional string filter_glob = 4;
      Returns:
      The bytes for filterGlob.