// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/field_mask.proto
package com.google.protobuf;
public interface FieldMaskOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.protobuf.FieldMask)
com.google.protobuf.MessageOrBuilder {
The set of field mask paths.
repeated string paths = 1;
Returns: A list containing the paths.
/**
* <pre>
* The set of field mask paths.
* </pre>
*
* <code>repeated string paths = 1;</code>
* @return A list containing the paths.
*/
java.util.List<java.lang.String>
getPathsList();
The set of field mask paths.
repeated string paths = 1;
Returns: The count of paths.
/**
* <pre>
* The set of field mask paths.
* </pre>
*
* <code>repeated string paths = 1;</code>
* @return The count of paths.
*/
int getPathsCount();
The set of field mask paths.
repeated string paths = 1;
Params: - index – The index of the element to return.
Returns: The paths at the given index.
/**
* <pre>
* The set of field mask paths.
* </pre>
*
* <code>repeated string paths = 1;</code>
* @param index The index of the element to return.
* @return The paths at the given index.
*/
java.lang.String getPaths(int index);
The set of field mask paths.
repeated string paths = 1;
Params: - index – The index of the value to return.
Returns: The bytes of the paths at the given index.
/**
* <pre>
* The set of field mask paths.
* </pre>
*
* <code>repeated string paths = 1;</code>
* @param index The index of the value to return.
* @return The bytes of the paths at the given index.
*/
com.google.protobuf.ByteString
getPathsBytes(int index);
}