Uses of Enum
de.xima.fc.utils.JsonPathUtils.QuoteStyle
Packages that use JsonPathUtils.QuoteStyle
-
Uses of JsonPathUtils.QuoteStyle in de.xima.fc.utils
Subclasses with type arguments of type JsonPathUtils.QuoteStyle in de.xima.fc.utilsModifier and TypeClassDescriptionstatic enumThe quoting style for JSON path string literals.Methods in de.xima.fc.utils that return JsonPathUtils.QuoteStyleModifier and TypeMethodDescriptionstatic JsonPathUtils.QuoteStyleReturns the enum constant of this type with the specified name.static JsonPathUtils.QuoteStyle[]JsonPathUtils.QuoteStyle.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.xima.fc.utils with parameters of type JsonPathUtils.QuoteStyleModifier and TypeMethodDescriptionstatic StringJsonPathUtils.joinPathSegment(Object[] segments, int start, int end, JsonPathUtils.QuoteStyle quoteStyle) static StringJsonPathUtils.jsonPathNameSegment(String name, JsonPathUtils.QuoteStyle quoteStyle) Constructs a JSON path name segment for a given object property name, as per RFC 9535 - name syntax, using the given quote style.static StringJsonPathUtils.jsonPathSegment(Object segment, JsonPathUtils.QuoteStyle quoteStyle) Returns eitherJsonPathUtils.jsonPathIndexSegment(int)orJsonPathUtils.jsonPathNameSegment(String)depending on the type of the given segment, using the given quote style.static StringJsonPathUtils.jsonSubPath(String path, Object key, JsonPathUtils.QuoteStyle quoteStyle) Constructs a JSON path for a sub-element at the given name or index of the given path, using the given quote style.static StringJsonPathUtils.jsonSubPathAtName(String parentPath, String name, JsonPathUtils.QuoteStyle quoteStyle) Constructs a JSON path for a sub-element at the given object property name of the given parent path, using the given quote style.