java.io.deephaven.proto.backplane.grpc.ListItemsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/storage.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface ListItemsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.ListItemsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The path to the directory to list. empty to list top level
*
*
* string path = 1;
* @return The path.
*/
java.lang.String getPath();
/**
*
* The path to the directory to list. empty to list top level
*
*
* string path = 1;
* @return The bytes for path.
*/
com.google.protobuf.ByteString
getPathBytes();
/**
*
* 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;
* @return Whether the filterGlob field is set.
*/
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;
* @return The filterGlob.
*/
java.lang.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;
* @return The bytes for filterGlob.
*/
com.google.protobuf.ByteString
getFilterGlobBytes();
}