Package com.google.webrisk.v1beta1
Interface RawIndicesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RawIndices
,RawIndices.Builder
public interface RawIndicesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getIndices(int index)
The indices to remove from a lexicographically-sorted local list.int
getIndicesCount()
The indices to remove from a lexicographically-sorted local list.List<Integer>
getIndicesList()
The indices to remove from a lexicographically-sorted local list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIndicesList
List<Integer> getIndicesList()
The indices to remove from a lexicographically-sorted local list.
repeated int32 indices = 1;
- Returns:
- A list containing the indices.
-
getIndicesCount
int getIndicesCount()
The indices to remove from a lexicographically-sorted local list.
repeated int32 indices = 1;
- Returns:
- The count of indices.
-
getIndices
int getIndices(int index)
The indices to remove from a lexicographically-sorted local list.
repeated int32 indices = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The indices at the given index.
-
-