Interface ListStringPOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListStringP
,ListStringP.Builder
public interface ListStringPOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getItems(int index)
repeated string items = 1;
com.google.protobuf.ByteString
getItemsBytes(int index)
repeated string items = 1;
int
getItemsCount()
repeated string items = 1;
List<String>
getItemsList()
repeated string items = 1;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getItemsList
List<String> getItemsList()
repeated string items = 1;
- Returns:
- A list containing the items.
-
getItemsCount
int getItemsCount()
repeated string items = 1;
- Returns:
- The count of items.
-
getItems
String getItems(int index)
repeated string items = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The items at the given index.
-
getItemsBytes
com.google.protobuf.ByteString getItemsBytes(int index)
repeated string items = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the items at the given index.
-
-