public class YAMLFactory
extends com.fasterxml.jackson.core.JsonFactory
Modifier and Type | Field and Description |
---|---|
protected org.yaml.snakeyaml.DumperOptions |
_outputOptions |
protected org.yaml.snakeyaml.DumperOptions.Version |
_version |
protected int |
_yamlGeneratorFeatures |
protected int |
_yamlParserFeatures |
protected static int |
DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
Bitfield (set of flags) of all generator features that are enabled
by default.
|
protected static int |
DEFAULT_YAML_PARSER_FEATURE_FLAGS
Bitfield (set of flags) of all parser features that are enabled
by default.
|
static String |
FORMAT_NAME_YAML
Name used to identify YAML format.
|
protected Charset |
UTF8 |
_characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _objectCodec, _outputDecorator, _parserFeatures, _recyclerRef, _rootByteSymbols, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, FORMAT_NAME_JSON
Constructor and Description |
---|
YAMLFactory()
Default constructor used to create factory instances.
|
YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc) |
YAMLFactory(YAMLFactory src,
com.fasterxml.jackson.core.ObjectCodec oc) |
Modifier and Type | Method and Description |
---|---|
protected YAMLGenerator |
_createGenerator(Writer out,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLGenerator |
_createJsonGenerator(Writer out,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLParser |
_createJsonParser(byte[] data,
int offset,
int len,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLParser |
_createJsonParser(InputStream in,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected com.fasterxml.jackson.core.JsonParser |
_createJsonParser(Reader r,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLParser |
_createParser(byte[] data,
int offset,
int len,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLParser |
_createParser(InputStream in,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLParser |
_createParser(Reader r,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected Reader |
_createReader(byte[] data,
int offset,
int len,
com.fasterxml.jackson.core.JsonEncoding enc,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected Reader |
_createReader(InputStream in,
com.fasterxml.jackson.core.JsonEncoding enc,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLGenerator |
_createUTF8Generator(OutputStream out,
com.fasterxml.jackson.core.io.IOContext ctxt) |
protected YAMLGenerator |
_createUTF8JsonGenerator(OutputStream out,
com.fasterxml.jackson.core.io.IOContext ctxt)
Deprecated.
|
protected Writer |
_createWriter(OutputStream out,
com.fasterxml.jackson.core.JsonEncoding enc,
com.fasterxml.jackson.core.io.IOContext ctxt) |
YAMLFactory |
configure(YAMLGenerator.Feature f,
boolean state)
Method for enabling or disabling specified generator feature
(check
YAMLGenerator.Feature for list of features) |
YAMLFactory |
configure(YAMLParser.Feature f,
boolean state)
Method for enabling or disabling specified parser feature
(check
YAMLParser.Feature for list of features) |
YAMLFactory |
copy() |
YAMLGenerator |
createGenerator(OutputStream out) |
YAMLGenerator |
createGenerator(OutputStream out,
com.fasterxml.jackson.core.JsonEncoding enc) |
YAMLGenerator |
createGenerator(Writer out) |
YAMLGenerator |
createJsonGenerator(OutputStream out)
Deprecated.
|
YAMLGenerator |
createJsonGenerator(OutputStream out,
com.fasterxml.jackson.core.JsonEncoding enc)
Deprecated.
|
YAMLGenerator |
createJsonGenerator(Writer out)
Deprecated.
|
YAMLParser |
createJsonParser(byte[] data)
Deprecated.
|
YAMLParser |
createJsonParser(byte[] data,
int offset,
int len)
Deprecated.
|
YAMLParser |
createJsonParser(File f)
Deprecated.
|
YAMLParser |
createJsonParser(InputStream in)
Deprecated.
|
com.fasterxml.jackson.core.JsonParser |
createJsonParser(Reader r)
Deprecated.
|
YAMLParser |
createJsonParser(String content)
Deprecated.
|
YAMLParser |
createJsonParser(URL url)
Deprecated.
|
YAMLParser |
createParser(byte[] data) |
YAMLParser |
createParser(byte[] data,
int offset,
int len) |
YAMLParser |
createParser(File f) |
YAMLParser |
createParser(InputStream in) |
com.fasterxml.jackson.core.JsonParser |
createParser(Reader r) |
YAMLParser |
createParser(String content) |
YAMLParser |
createParser(URL url) |
YAMLFactory |
disable(YAMLGenerator.Feature f)
Method for disabling specified generator feature
(check
YAMLGenerator.Feature for list of features) |
YAMLFactory |
disable(YAMLParser.Feature f)
Method for disabling specified parser features
(check
YAMLParser.Feature for list of features) |
YAMLFactory |
enable(YAMLGenerator.Feature f)
Method for enabling specified generator features
(check
YAMLGenerator.Feature for list of features) |
YAMLFactory |
enable(YAMLParser.Feature f)
Method for enabling specified parser feature
(check
YAMLParser.Feature for list of features) |
String |
getFormatName() |
com.fasterxml.jackson.core.format.MatchStrength |
hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
Sub-classes need to override this method (as of 1.8)
|
boolean |
isEnabled(YAMLGenerator.Feature f)
Check whether specified generator feature is enabled.
|
boolean |
isEnabled(YAMLParser.Feature f)
Checked whether specified parser feature is enabled.
|
protected Object |
readResolve()
Method that we need to override to actually make restoration go
through constructors etc.
|
com.fasterxml.jackson.core.Version |
version() |
_checkInvalidCopy, _createContext, _getBufferRecycler, _optimizedStreamFromURL, canUseSchema, configure, configure, configure, createGenerator, createJsonGenerator, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getInputDecorator, getOutputDecorator, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
public static final String FORMAT_NAME_YAML
getFormatName()
protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
protected int _yamlParserFeatures
protected int _yamlGeneratorFeatures
protected transient org.yaml.snakeyaml.DumperOptions _outputOptions
protected org.yaml.snakeyaml.DumperOptions.Version _version
protected final Charset UTF8
public YAMLFactory()
public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
public YAMLFactory(YAMLFactory src, com.fasterxml.jackson.core.ObjectCodec oc)
public YAMLFactory copy()
copy
in class com.fasterxml.jackson.core.JsonFactory
protected Object readResolve()
readResolve
in class com.fasterxml.jackson.core.JsonFactory
public com.fasterxml.jackson.core.Version version()
version
in interface com.fasterxml.jackson.core.Versioned
version
in class com.fasterxml.jackson.core.JsonFactory
public String getFormatName()
getFormatName
in class com.fasterxml.jackson.core.JsonFactory
public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc) throws IOException
hasFormat
in class com.fasterxml.jackson.core.JsonFactory
IOException
public final YAMLFactory configure(YAMLParser.Feature f, boolean state)
YAMLParser.Feature
for list of features)public YAMLFactory enable(YAMLParser.Feature f)
YAMLParser.Feature
for list of features)public YAMLFactory disable(YAMLParser.Feature f)
YAMLParser.Feature
for list of features)public final boolean isEnabled(YAMLParser.Feature f)
public final YAMLFactory configure(YAMLGenerator.Feature f, boolean state)
YAMLGenerator.Feature
for list of features)public YAMLFactory enable(YAMLGenerator.Feature f)
YAMLGenerator.Feature
for list of features)public YAMLFactory disable(YAMLGenerator.Feature f)
YAMLGenerator.Feature
for list of features)public final boolean isEnabled(YAMLGenerator.Feature f)
public YAMLParser createParser(String content) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public YAMLParser createParser(File f) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public YAMLParser createParser(URL url) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public YAMLParser createParser(InputStream in) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public com.fasterxml.jackson.core.JsonParser createParser(Reader r) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public YAMLParser createParser(byte[] data) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public YAMLParser createParser(byte[] data, int offset, int len) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public YAMLParser createJsonParser(String content) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public YAMLParser createJsonParser(File f) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public YAMLParser createJsonParser(URL url) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public YAMLParser createJsonParser(InputStream in) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public com.fasterxml.jackson.core.JsonParser createJsonParser(Reader r) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public YAMLParser createJsonParser(byte[] data) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
@Deprecated public YAMLParser createJsonParser(byte[] data, int offset, int len) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
public YAMLGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) throws IOException
createGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
public YAMLGenerator createGenerator(OutputStream out) throws IOException
createGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
public YAMLGenerator createGenerator(Writer out) throws IOException
createGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
@Deprecated public YAMLGenerator createJsonGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) throws IOException
createJsonGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
@Deprecated public YAMLGenerator createJsonGenerator(OutputStream out) throws IOException
createJsonGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
@Deprecated public YAMLGenerator createJsonGenerator(Writer out) throws IOException
createJsonGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
protected YAMLParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonParseException
_createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
protected YAMLParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonParseException
_createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
protected YAMLParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonParseException
_createParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
protected YAMLParser _createJsonParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonParseException
_createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
protected com.fasterxml.jackson.core.JsonParser _createJsonParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonParseException
_createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
protected YAMLParser _createJsonParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException, com.fasterxml.jackson.core.JsonParseException
_createJsonParser
in class com.fasterxml.jackson.core.JsonFactory
IOException
com.fasterxml.jackson.core.JsonParseException
protected YAMLGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
protected YAMLGenerator _createJsonGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createJsonGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
protected YAMLGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createUTF8Generator
in class com.fasterxml.jackson.core.JsonFactory
IOException
@Deprecated protected YAMLGenerator _createUTF8JsonGenerator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createUTF8JsonGenerator
in class com.fasterxml.jackson.core.JsonFactory
IOException
protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createWriter
in class com.fasterxml.jackson.core.JsonFactory
IOException
protected Reader _createReader(InputStream in, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
IOException
protected Reader _createReader(byte[] data, int offset, int len, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
IOException
Copyright © 2014. All rights reserved.