Package org.yaml.snakeyaml.constructor
Class SafeConstructor
- java.lang.Object
-
- org.yaml.snakeyaml.constructor.BaseConstructor
-
- org.yaml.snakeyaml.constructor.SafeConstructor
-
- Direct Known Subclasses:
Constructor
public class SafeConstructor extends BaseConstructor
Construct standard Java classes
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SafeConstructor.ConstructUndefined
class
SafeConstructor.ConstructYamlBinary
class
SafeConstructor.ConstructYamlBool
class
SafeConstructor.ConstructYamlFloat
class
SafeConstructor.ConstructYamlInt
class
SafeConstructor.ConstructYamlMap
class
SafeConstructor.ConstructYamlNull
class
SafeConstructor.ConstructYamlOmap
class
SafeConstructor.ConstructYamlPairs
class
SafeConstructor.ConstructYamlSeq
class
SafeConstructor.ConstructYamlSet
class
SafeConstructor.ConstructYamlStr
static class
SafeConstructor.ConstructYamlTimestamp
-
Field Summary
Fields Modifier and Type Field Description static SafeConstructor.ConstructUndefined
undefinedConstructor
-
Fields inherited from class org.yaml.snakeyaml.constructor.BaseConstructor
composer, loadingConfig, rootTag, typeDefinitions, typeTags, yamlClassConstructors, yamlConstructors, yamlMultiConstructors
-
-
Constructor Summary
Constructors Constructor Description SafeConstructor()
SafeConstructor(LoaderOptions loadingConfig)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
constructMapping2ndStep(MappingNode node, java.util.Map<java.lang.Object,java.lang.Object> mapping)
protected void
constructSet2ndStep(MappingNode node, java.util.Set<java.lang.Object> set)
protected static java.lang.Number
createLongOrBigInteger(java.lang.String number, int radix)
protected void
flattenMapping(MappingNode node)
protected void
processDuplicateKeys(MappingNode node)
-
Methods inherited from class org.yaml.snakeyaml.constructor.BaseConstructor
addTypeDescription, checkData, constructArray, constructArrayStep2, constructDocument, constructMapping, constructObject, constructObjectNoCheck, constructScalar, constructSequence, constructSequenceStep2, constructSet, constructSet, createArray, createDefaultList, createDefaultMap, createDefaultSet, finalizeConstruction, getConstructor, getData, getPropertyUtils, getSingleData, isAllowDuplicateKeys, isEnumCaseSensitive, isExplicitPropertyUtils, isWrappedToRootException, newInstance, newInstance, newInstance, newList, newMap, newSet, postponeMapFilling, postponeSetFilling, setAllowDuplicateKeys, setComposer, setEnumCaseSensitive, setPropertyUtils, setWrappedToRootException
-
-
-
-
Field Detail
-
undefinedConstructor
public static final SafeConstructor.ConstructUndefined undefinedConstructor
-
-
Constructor Detail
-
SafeConstructor
public SafeConstructor()
-
SafeConstructor
public SafeConstructor(LoaderOptions loadingConfig)
-
-
Method Detail
-
flattenMapping
protected void flattenMapping(MappingNode node)
-
processDuplicateKeys
protected void processDuplicateKeys(MappingNode node)
-
constructMapping2ndStep
protected void constructMapping2ndStep(MappingNode node, java.util.Map<java.lang.Object,java.lang.Object> mapping)
- Overrides:
constructMapping2ndStep
in classBaseConstructor
-
constructSet2ndStep
protected void constructSet2ndStep(MappingNode node, java.util.Set<java.lang.Object> set)
- Overrides:
constructSet2ndStep
in classBaseConstructor
-
createLongOrBigInteger
protected static java.lang.Number createLongOrBigInteger(java.lang.String number, int radix)
-
-