Package com.google.cloud.alloydb.v1beta
Interface SupportedDatabaseFlag.StringRestrictionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SupportedDatabaseFlag.StringRestrictions
,SupportedDatabaseFlag.StringRestrictions.Builder
- Enclosing class:
- SupportedDatabaseFlag
public static interface SupportedDatabaseFlag.StringRestrictionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAllowedValues(int index)
The list of allowed values, if bounded.com.google.protobuf.ByteString
getAllowedValuesBytes(int index)
The list of allowed values, if bounded.int
getAllowedValuesCount()
The list of allowed values, if bounded.List<String>
getAllowedValuesList()
The list of allowed values, if bounded.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAllowedValuesList
List<String> getAllowedValuesList()
The list of allowed values, if bounded. This field will be empty if there is a unbounded number of allowed values.
repeated string allowed_values = 1;
- Returns:
- A list containing the allowedValues.
-
getAllowedValuesCount
int getAllowedValuesCount()
The list of allowed values, if bounded. This field will be empty if there is a unbounded number of allowed values.
repeated string allowed_values = 1;
- Returns:
- The count of allowedValues.
-
getAllowedValues
String getAllowedValues(int index)
The list of allowed values, if bounded. This field will be empty if there is a unbounded number of allowed values.
repeated string allowed_values = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The allowedValues at the given index.
-
getAllowedValuesBytes
com.google.protobuf.ByteString getAllowedValuesBytes(int index)
The list of allowed values, if bounded. This field will be empty if there is a unbounded number of allowed values.
repeated string allowed_values = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the allowedValues at the given index.
-
-