Uses of Record Class
org.springframework.boot.json.JsonWriter.MemberPath
Packages that use JsonWriter.MemberPath
-
Uses of JsonWriter.MemberPath in org.springframework.boot.json
Methods in org.springframework.boot.json that return JsonWriter.MemberPathModifier and TypeMethodDescriptionJsonWriter.MemberPath.child(int index) Create a new child from this path with the specified index.Create a new child from this path with the specified name.static JsonWriter.MemberPathCreate a newJsonWriter.MemberPathinstance from the given string.@Nullable JsonWriter.MemberPathJsonWriter.MemberPath.parent()Returns the value of theparentrecord component.Methods in org.springframework.boot.json with parameters of type JsonWriter.MemberPathModifier and TypeMethodDescription@Nullable StringJsonWriter.NameProcessor.processName(JsonWriter.MemberPath path, String existingName) Return a new name for the JSON member ornullif the member should be filtered entirely.@Nullable TJsonWriter.ValueProcessor.processValue(JsonWriter.MemberPath path, @Nullable T value) Process the value at the given path.Method parameters in org.springframework.boot.json with type arguments of type JsonWriter.MemberPathModifier and TypeMethodDescriptionvoidJsonWriter.Members.applyingPathFilter(Predicate<JsonWriter.MemberPath> predicate) Add a filter that will be used to restrict the members written to the JSON.default JsonWriter.ValueProcessor<T> JsonWriter.ValueProcessor.whenHasPath(Predicate<JsonWriter.MemberPath> predicate) Return a new processor from this one that only applied to members that match the given path predicate.Constructors in org.springframework.boot.json with parameters of type JsonWriter.MemberPathModifierConstructorDescriptionMemberPath(@Nullable JsonWriter.MemberPath parent, @Nullable String name, int index) Creates an instance of aMemberPathrecord class.