Uses of Interface
org.snakeyaml.engine.v2.api.RepresentToNode
-
Packages that use RepresentToNode Package Description org.snakeyaml.engine.v2.representer -
-
Uses of RepresentToNode in org.snakeyaml.engine.v2.representer
Classes in org.snakeyaml.engine.v2.representer that implement RepresentToNode Modifier and Type Class Description class
StandardRepresenter.RepresentArray
Create Node for Object[]class
StandardRepresenter.RepresentBoolean
Create Node for Booleanclass
StandardRepresenter.RepresentByteArray
Create Node for byte[]class
StandardRepresenter.RepresentEnum
Create eNode for Enumsclass
StandardRepresenter.RepresentIterator
Create Node for Iteratorclass
StandardRepresenter.RepresentList
Create Node for Listclass
StandardRepresenter.RepresentMap
Create Node for Map instanceprotected class
StandardRepresenter.RepresentNull
Create null Nodeclass
StandardRepresenter.RepresentNumber
Create Node for Byte, Short, Integer, Long, BigIntegerclass
StandardRepresenter.RepresentOptional
Create Node for Optional instance (the value of null)class
StandardRepresenter.RepresentPrimitiveArray
Represents primitive arrays, such as short[] and float[], by converting them into equivalentList
using the appropriate autoboxing type.class
StandardRepresenter.RepresentSet
Create Node for Set instancesclass
StandardRepresenter.RepresentString
Create Node for Stringclass
StandardRepresenter.RepresentUuid
Create Node for UUIDFields in org.snakeyaml.engine.v2.representer declared as RepresentToNode Modifier and Type Field Description protected RepresentToNode
BaseRepresenter. nullRepresenter
in Java 'null' is not a type.Fields in org.snakeyaml.engine.v2.representer with type parameters of type RepresentToNode Modifier and Type Field Description protected java.util.Map<java.lang.Class<?>,RepresentToNode>
BaseRepresenter. parentClassRepresenters
Keep representers which match a parent of the class to be representedprotected java.util.Map<java.lang.Class<?>,RepresentToNode>
BaseRepresenter. representers
Keep representers which must match the class exactlyMethods in org.snakeyaml.engine.v2.representer that return types with arguments of type RepresentToNode Modifier and Type Method Description protected java.util.Optional<RepresentToNode>
BaseRepresenter. findRepresenterFor(java.lang.Object data)
Find the representer which is suitable to represent the internal structure of the provided instance to a Node
-