Interface ExamplesRestrictionsNamespaceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExamplesRestrictionsNamespace,ExamplesRestrictionsNamespace.Builder
public interface ExamplesRestrictionsNamespaceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAllow(int index)The list of allowed tags.com.google.protobuf.ByteStringgetAllowBytes(int index)The list of allowed tags.intgetAllowCount()The list of allowed tags.List<String>getAllowList()The list of allowed tags.StringgetDeny(int index)The list of deny tags.com.google.protobuf.ByteStringgetDenyBytes(int index)The list of deny tags.intgetDenyCount()The list of deny tags.List<String>getDenyList()The list of deny tags.StringgetNamespaceName()The namespace name.com.google.protobuf.ByteStringgetNamespaceNameBytes()The namespace name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNamespaceName
String getNamespaceName()
The namespace name.
string namespace_name = 1;- Returns:
- The namespaceName.
-
getNamespaceNameBytes
com.google.protobuf.ByteString getNamespaceNameBytes()
The namespace name.
string namespace_name = 1;- Returns:
- The bytes for namespaceName.
-
getAllowList
List<String> getAllowList()
The list of allowed tags.
repeated string allow = 2;- Returns:
- A list containing the allow.
-
getAllowCount
int getAllowCount()
The list of allowed tags.
repeated string allow = 2;- Returns:
- The count of allow.
-
getAllow
String getAllow(int index)
The list of allowed tags.
repeated string allow = 2;- Parameters:
index- The index of the element to return.- Returns:
- The allow at the given index.
-
getAllowBytes
com.google.protobuf.ByteString getAllowBytes(int index)
The list of allowed tags.
repeated string allow = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the allow at the given index.
-
getDenyList
List<String> getDenyList()
The list of deny tags.
repeated string deny = 3;- Returns:
- A list containing the deny.
-
getDenyCount
int getDenyCount()
The list of deny tags.
repeated string deny = 3;- Returns:
- The count of deny.
-
getDeny
String getDeny(int index)
The list of deny tags.
repeated string deny = 3;- Parameters:
index- The index of the element to return.- Returns:
- The deny at the given index.
-
getDenyBytes
com.google.protobuf.ByteString getDenyBytes(int index)
The list of deny tags.
repeated string deny = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the deny at the given index.
-
-