Package com.google.protobuf
Interface FieldMaskOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
- All Known Implementing Classes:
FieldMask,FieldMask.Builder
public interface FieldMaskOrBuilder extends MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPaths(int index)The set of field mask paths.ByteStringgetPathsBytes(int index)The set of field mask paths.intgetPathsCount()The set of field mask paths.List<String>getPathsList()The set of field mask paths.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
-
-
-
Method Detail
-
getPathsList
List<String> getPathsList()
The set of field mask paths.
repeated string paths = 1;- Returns:
- A list containing the paths.
-
getPathsCount
int getPathsCount()
The set of field mask paths.
repeated string paths = 1;- Returns:
- The count of paths.
-
getPaths
String getPaths(int index)
The set of field mask paths.
repeated string paths = 1;- Parameters:
index- The index of the element to return.- Returns:
- The paths at the given index.
-
getPathsBytes
ByteString getPathsBytes(int index)
The set of field mask paths.
repeated string paths = 1;- Parameters:
index- The index of the element to return.- Returns:
- The paths at the given index.
-
-