Package s2.v1alpha
Interface ListBasinsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBasinsResponse
,ListBasinsResponse.Builder
public interface ListBasinsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BasinInfo
getBasins(int index)
Matching basins.int
getBasinsCount()
Matching basins.java.util.List<BasinInfo>
getBasinsList()
Matching basins.BasinInfoOrBuilder
getBasinsOrBuilder(int index)
Matching basins.java.util.List<? extends BasinInfoOrBuilder>
getBasinsOrBuilderList()
Matching basins.boolean
getHasMore()
If set, indicates there are more results that can be listed with `start_after`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBasinsList
java.util.List<BasinInfo> getBasinsList()
Matching basins.
repeated .s2.v1alpha.BasinInfo basins = 1;
-
getBasins
BasinInfo getBasins(int index)
Matching basins.
repeated .s2.v1alpha.BasinInfo basins = 1;
-
getBasinsCount
int getBasinsCount()
Matching basins.
repeated .s2.v1alpha.BasinInfo basins = 1;
-
getBasinsOrBuilderList
java.util.List<? extends BasinInfoOrBuilder> getBasinsOrBuilderList()
Matching basins.
repeated .s2.v1alpha.BasinInfo basins = 1;
-
getBasinsOrBuilder
BasinInfoOrBuilder getBasinsOrBuilder(int index)
Matching basins.
repeated .s2.v1alpha.BasinInfo basins = 1;
-
getHasMore
boolean getHasMore()
If set, indicates there are more results that can be listed with `start_after`.
bool has_more = 2;
- Returns:
- The hasMore.
-
-