Package io.github.astrapi69.json.factory
Class YAMLMapperFactory
- java.lang.Object
-
- io.github.astrapi69.json.factory.YAMLMapperFactory
-
public final class YAMLMapperFactory extends java.lang.Object
The factory classYAMLMapperFactory
for creatingYAMLMapper
objects
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static com.fasterxml.jackson.dataformat.yaml.YAMLMapper
newYAMLMapper()
Factory method for create a newYAMLMapper
static com.fasterxml.jackson.dataformat.yaml.YAMLMapper
newYAMLMapper(com.fasterxml.jackson.dataformat.yaml.YAMLFactory yamlFactory)
Factory method for create a newYAMLMapper
static com.fasterxml.jackson.dataformat.yaml.YAMLMapper
newYAMLMapper(com.fasterxml.jackson.dataformat.yaml.YAMLMapper yamlMapper)
Factory method for create a newYAMLMapper
-
-
-
Method Detail
-
newYAMLMapper
public static com.fasterxml.jackson.dataformat.yaml.YAMLMapper newYAMLMapper()
Factory method for create a newYAMLMapper
- Returns:
- the new
YAMLMapper
-
newYAMLMapper
public static com.fasterxml.jackson.dataformat.yaml.YAMLMapper newYAMLMapper(com.fasterxml.jackson.dataformat.yaml.YAMLFactory yamlFactory)
Factory method for create a newYAMLMapper
- Parameters:
yamlFactory
- theYAMLFactory
object- Returns:
- the new
YAMLMapper
-
newYAMLMapper
public static com.fasterxml.jackson.dataformat.yaml.YAMLMapper newYAMLMapper(com.fasterxml.jackson.dataformat.yaml.YAMLMapper yamlMapper)
Factory method for create a newYAMLMapper
- Parameters:
yamlMapper
- theYAMLMapper
object- Returns:
- the new
YAMLMapper
-
-