Uses of Class
com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
-
Packages that use JPropPathSplitter Package Description com.fasterxml.jackson.dataformat.javaprop Basic API types to use with this module:JavaPropsFactory
is theJsonFactory
implementation used to create Java Properties parsers and generatorsJavaPropsGenerator
is the matchingJsonGenerator
implementation to useJavaPropsParser
is the matchingJsonParser
implementation to useJavaPropsMapper
is a convenience sub-class ofObjectMapper
that is both configured to useJavaPropsFactory
, and adds additional methods for using alternate content sources and targets for improved interoperability withProperties
, System Properties, and env propertiesJavaPropsSchema
is theFormatSchema
implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)com.fasterxml.jackson.dataformat.javaprop.util Helper classes for dealing with property key to structured path conversion. -
-
Uses of JPropPathSplitter in com.fasterxml.jackson.dataformat.javaprop
Fields in com.fasterxml.jackson.dataformat.javaprop declared as JPropPathSplitter Modifier and Type Field Description protected JPropPathSplitter
JavaPropsSchema. _splitter
Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.Methods in com.fasterxml.jackson.dataformat.javaprop that return JPropPathSplitter Modifier and Type Method Description JPropPathSplitter
JavaPropsSchema. pathSplitter()
Accessor for getting aJPropPathSplitter
instance that does splitting according to the settings of this instance. -
Uses of JPropPathSplitter in com.fasterxml.jackson.dataformat.javaprop.util
Subclasses of JPropPathSplitter in com.fasterxml.jackson.dataformat.javaprop.util Modifier and Type Class Description static class
JPropPathSplitter.CharPathOnlySplitter
Simple variant where we only have path separator, and optional "segment is index iff value is integer number"static class
JPropPathSplitter.FullSplitter
Instance that supports both path separator and index markers (and possibly also "simple" indexes)static class
JPropPathSplitter.IndexOnlySplitter
Special variant that does not use path separator, but does allow index indicator, at the end of path.static class
JPropPathSplitter.NonSplitting
"No-op" implementation that does no splitting and simply adds entries as is.static class
JPropPathSplitter.StringPathOnlySplitter
Simple variant where we only have path separator, and optional "segment is index iff value is integer number"Fields in com.fasterxml.jackson.dataformat.javaprop.util declared as JPropPathSplitter Modifier and Type Field Description protected JPropPathSplitter
JPropPathSplitter.FullSplitter. _simpleSplitter
Methods in com.fasterxml.jackson.dataformat.javaprop.util that return JPropPathSplitter Modifier and Type Method Description static JPropPathSplitter
JPropPathSplitter. create(JavaPropsSchema schema)
private static JPropPathSplitter
JPropPathSplitter. pathOnlySplitter(JavaPropsSchema schema)
Constructors in com.fasterxml.jackson.dataformat.javaprop.util with parameters of type JPropPathSplitter Constructor Description FullSplitter(java.lang.String pathSeparator, boolean useSimpleIndex, Markers indexMarker, JPropPathSplitter fallbackSplitter)
-