public class YAMLFactory
extends com.fasterxml.jackson.core.JsonFactory
| Modifier and Type | Field and Description |
|---|---|
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)
Deprecated.
|
protected YAMLParser |
_createJsonParser(byte[] data,
int offset,
int len,
com.fasterxml.jackson.core.io.IOContext ctxt)
Deprecated.
|
protected YAMLParser |
_createJsonParser(InputStream in,
com.fasterxml.jackson.core.io.IOContext ctxt)
Deprecated.
|
protected com.fasterxml.jackson.core.JsonParser |
_createJsonParser(Reader r,
com.fasterxml.jackson.core.io.IOContext ctxt)
Deprecated.
|
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)
Deprecated.
|
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, canHandleBinaryNatively, canUseSchema, configure, configure, configure, createGenerator, createJsonGenerator, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getInputDecorator, getOutputDecorator, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, requiresCustomCodec, requiresPropertyOrdering, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparatorpublic 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 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.JsonFactoryprotected Object readResolve()
readResolve in class com.fasterxml.jackson.core.JsonFactorypublic com.fasterxml.jackson.core.Version version()
version in interface com.fasterxml.jackson.core.Versionedversion in class com.fasterxml.jackson.core.JsonFactorypublic String getFormatName()
getFormatName in class com.fasterxml.jackson.core.JsonFactorypublic com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
throws IOException
hasFormat in class com.fasterxml.jackson.core.JsonFactoryIOExceptionpublic 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic YAMLParser createParser(File f) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic YAMLParser createParser(URL url) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic YAMLParser createParser(InputStream in) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic com.fasterxml.jackson.core.JsonParser createParser(Reader r) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic YAMLParser createParser(byte[] data) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic YAMLParser createParser(byte[] data, int offset, int len) throws IOException, com.fasterxml.jackson.core.JsonParseException
createParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated public YAMLParser createJsonParser(String content) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated public YAMLParser createJsonParser(File f) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated public YAMLParser createJsonParser(URL url) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated public YAMLParser createJsonParser(InputStream in) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated public YAMLParser createJsonParser(byte[] data) throws IOException, com.fasterxml.jackson.core.JsonParseException
createJsonParser in class com.fasterxml.jackson.core.JsonFactoryIOExceptioncom.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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionpublic YAMLGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) throws IOException
createGenerator in class com.fasterxml.jackson.core.JsonFactoryIOExceptionpublic YAMLGenerator createGenerator(OutputStream out) throws IOException
createGenerator in class com.fasterxml.jackson.core.JsonFactoryIOExceptionpublic YAMLGenerator createGenerator(Writer out) throws IOException
createGenerator in class com.fasterxml.jackson.core.JsonFactoryIOException@Deprecated public YAMLGenerator createJsonGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) throws IOException
createJsonGenerator in class com.fasterxml.jackson.core.JsonFactoryIOException@Deprecated public YAMLGenerator createJsonGenerator(OutputStream out) throws IOException
createJsonGenerator in class com.fasterxml.jackson.core.JsonFactoryIOException@Deprecated public YAMLGenerator createJsonGenerator(Writer out) throws IOException
createJsonGenerator in class com.fasterxml.jackson.core.JsonFactoryIOExceptionprotected 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionprotected 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionprotected 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseException@Deprecated 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.JsonFactoryIOExceptioncom.fasterxml.jackson.core.JsonParseExceptionprotected YAMLGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createGenerator in class com.fasterxml.jackson.core.JsonFactoryIOException@Deprecated protected YAMLGenerator _createJsonGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createJsonGenerator in class com.fasterxml.jackson.core.JsonFactoryIOException@Deprecated protected YAMLGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createUTF8Generator in class com.fasterxml.jackson.core.JsonFactoryIOException@Deprecated protected YAMLGenerator _createUTF8JsonGenerator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
_createUTF8JsonGenerator in class com.fasterxml.jackson.core.JsonFactoryIOExceptionprotected 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.JsonFactoryIOExceptionprotected Reader _createReader(InputStream in, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
IOExceptionprotected Reader _createReader(byte[] data, int offset, int len, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) throws IOException
IOExceptionCopyright © 2012-2014 FasterXML. All Rights Reserved.