Interface FeatureMap.StringListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeatureMap.StringList
,FeatureMap.StringList.Builder
- Enclosing class:
- FeatureMap
public static interface FeatureMap.StringListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getValue(int index)
String feature value with a length limit of 128 bytes.com.google.protobuf.ByteString
getValueBytes(int index)
String feature value with a length limit of 128 bytes.int
getValueCount()
String feature value with a length limit of 128 bytes.List<String>
getValueList()
String feature value with a length limit of 128 bytes.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValueList
List<String> getValueList()
String feature value with a length limit of 128 bytes.
repeated string value = 1;
- Returns:
- A list containing the value.
-
getValueCount
int getValueCount()
String feature value with a length limit of 128 bytes.
repeated string value = 1;
- Returns:
- The count of value.
-
getValue
String getValue(int index)
String feature value with a length limit of 128 bytes.
repeated string value = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The value at the given index.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes(int index)
String feature value with a length limit of 128 bytes.
repeated string value = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the value at the given index.
-
-