Package com.google.protobuf.util
Class FieldMaskUtil
java.lang.Object
com.google.protobuf.util.FieldMaskUtil
Utility helper functions to work with
FieldMask
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
Options to customize merging behavior. -
Method Summary
Modifier and TypeMethodDescriptionstatic FieldMask
fromFieldNumbers
(Class<? extends Message> type, int... fieldNumbers) Constructs a FieldMask from the passed field numbers.static FieldMask
fromFieldNumbers
(Class<? extends Message> type, Iterable<Integer> fieldNumbers) Constructs a FieldMask from the passed field numbers.static FieldMask
fromJsonString
(String value) Converts a field mask from a Proto3 JSON string, that is splitting the paths along commas and converting from camel case to snake case.static FieldMask
fromString
(Class<? extends Message> type, String value) Parses from a string to a FieldMask and validates all field paths.static FieldMask
fromString
(String value) Parses from a string to a FieldMask.static FieldMask
fromStringList
(Descriptors.Descriptor descriptor, Iterable<String> paths) Constructs a FieldMask for a list of field paths in a certain type.static FieldMask
fromStringList
(Class<? extends Message> type, Iterable<String> paths) Constructs a FieldMask for a list of field paths in a certain type.static FieldMask
fromStringList
(Iterable<String> paths) Constructs a FieldMask for a list of field paths in a certain type.static FieldMask
intersection
(FieldMask mask1, FieldMask mask2) Calculates the intersection of two FieldMasks.static boolean
isValid
(Descriptors.Descriptor descriptor, FieldMask fieldMask) Checks whether paths in a given fields mask are valid.static boolean
isValid
(Descriptors.Descriptor descriptor, String path) Checks whether paths in a given fields mask are valid.static boolean
Checks whether paths in a given fields mask are valid.static boolean
Checks whether a given field path is valid.static void
merge
(FieldMask mask, Message source, Message.Builder destination) Merges fields specified by a FieldMask from one message to another.static void
merge
(FieldMask mask, Message source, Message.Builder destination, FieldMaskUtil.MergeOptions options) Merges fields specified by a FieldMask from one message to another with the specified merge options.static FieldMask
Converts a FieldMask to its canonical form.static FieldMask
SubtractssecondMask
andotherMasks
fromfirstMask
.static String
toJsonString
(FieldMask fieldMask) Converts a field mask to a Proto3 JSON string, that is converting from snake case to camel case and joining all paths into one string with commas.static String
Converts a FieldMask to a string.static <P extends Message>
PReturns the result of keeping only the masked fields of the given proto.static FieldMask
Creates a union of two or more FieldMasks.
-
Method Details
-
toString
Converts a FieldMask to a string. -
fromString
Parses from a string to a FieldMask. -
fromString
Parses from a string to a FieldMask and validates all field paths.- Throws:
IllegalArgumentException
- if any of the field path is invalid.
-
fromStringList
Constructs a FieldMask for a list of field paths in a certain type.- Throws:
IllegalArgumentException
- if any of the field path is not valid
-
fromStringList
Constructs a FieldMask for a list of field paths in a certain type.- Throws:
IllegalArgumentException
- if any of the field path is not valid.
-
fromStringList
Constructs a FieldMask for a list of field paths in a certain type. Does not validate the given paths. -
fromFieldNumbers
Constructs a FieldMask from the passed field numbers.- Throws:
IllegalArgumentException
- if any of the fields are invalid for the message.
-
fromFieldNumbers
public static FieldMask fromFieldNumbers(Class<? extends Message> type, Iterable<Integer> fieldNumbers) Constructs a FieldMask from the passed field numbers.- Throws:
IllegalArgumentException
- if any of the fields are invalid for the message.
-
toJsonString
Converts a field mask to a Proto3 JSON string, that is converting from snake case to camel case and joining all paths into one string with commas. -
fromJsonString
Converts a field mask from a Proto3 JSON string, that is splitting the paths along commas and converting from camel case to snake case. -
isValid
Checks whether paths in a given fields mask are valid. -
isValid
Checks whether paths in a given fields mask are valid. -
isValid
Checks whether a given field path is valid. -
isValid
Checks whether paths in a given fields mask are valid. -
normalize
Converts a FieldMask to its canonical form. In the canonical form of a FieldMask, all field paths are sorted alphabetically and redundant field paths are removed. -
union
Creates a union of two or more FieldMasks. -
subtract
public static FieldMask subtract(FieldMask firstMask, FieldMask secondMask, FieldMask... otherMasks) SubtractssecondMask
andotherMasks
fromfirstMask
.This method disregards proto structure. That is, if
firstMask
is "foo" andsecondMask
is "foo.bar", the response will always be "foo" without considering the internal proto structure of message "foo". -
intersection
Calculates the intersection of two FieldMasks. -
merge
public static void merge(FieldMask mask, Message source, Message.Builder destination, FieldMaskUtil.MergeOptions options) Merges fields specified by a FieldMask from one message to another with the specified merge options. The destination will remain unchanged if an empty FieldMask is provided. -
merge
Merges fields specified by a FieldMask from one message to another. -
trim
Returns the result of keeping only the masked fields of the given proto.
-