Interface Build.StringListDictEntryOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Build.StringListDictEntry,Build.StringListDictEntry.Builder
- Enclosing class:
- Build
public static interface Build.StringListDictEntryOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKey()required string key = 1;ByteStringgetKeyBytes()required string key = 1;java.lang.StringgetValue(int index)repeated string value = 2;ByteStringgetValueBytes(int index)repeated string value = 2;intgetValueCount()repeated string value = 2;java.util.List<java.lang.String>getValueList()repeated string value = 2;booleanhasKey()required string key = 1;-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasKey
boolean hasKey()
required string key = 1;- Returns:
- Whether the key field is set.
-
getKey
java.lang.String getKey()
required string key = 1;- Returns:
- The key.
-
getKeyBytes
ByteString getKeyBytes()
required string key = 1;- Returns:
- The bytes for key.
-
getValueList
java.util.List<java.lang.String> getValueList()
repeated string value = 2;- Returns:
- A list containing the value.
-
getValueCount
int getValueCount()
repeated string value = 2;- Returns:
- The count of value.
-
getValue
java.lang.String getValue(int index)
repeated string value = 2;- Parameters:
index- The index of the element to return.- Returns:
- The value at the given index.
-
getValueBytes
ByteString getValueBytes(int index)
repeated string value = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the value at the given index.
-
-