Package s2.v1alpha
Interface ResourceSetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ResourceSet
,ResourceSet.Builder
public interface ResourceSetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getExact()
Match only the resource with this exact name.com.google.protobuf.ByteString
getExactBytes()
Match only the resource with this exact name.ResourceSet.MatchingCase
getMatchingCase()
java.lang.String
getPrefix()
Match all resources that start with this prefix.com.google.protobuf.ByteString
getPrefixBytes()
Match all resources that start with this prefix.boolean
hasExact()
Match only the resource with this exact name.boolean
hasPrefix()
Match all resources that start with this prefix.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasExact
boolean hasExact()
Match only the resource with this exact name. Use an empty string to match no resources.
string exact = 1;
- Returns:
- Whether the exact field is set.
-
getExact
java.lang.String getExact()
Match only the resource with this exact name. Use an empty string to match no resources.
string exact = 1;
- Returns:
- The exact.
-
getExactBytes
com.google.protobuf.ByteString getExactBytes()
Match only the resource with this exact name. Use an empty string to match no resources.
string exact = 1;
- Returns:
- The bytes for exact.
-
hasPrefix
boolean hasPrefix()
Match all resources that start with this prefix. Use an empty string to match all resource.
string prefix = 2;
- Returns:
- Whether the prefix field is set.
-
getPrefix
java.lang.String getPrefix()
Match all resources that start with this prefix. Use an empty string to match all resource.
string prefix = 2;
- Returns:
- The prefix.
-
getPrefixBytes
com.google.protobuf.ByteString getPrefixBytes()
Match all resources that start with this prefix. Use an empty string to match all resource.
string prefix = 2;
- Returns:
- The bytes for prefix.
-
getMatchingCase
ResourceSet.MatchingCase getMatchingCase()
-
-