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 classStandardRepresenter.RepresentArrayCreate Node for Object[]classStandardRepresenter.RepresentBooleanCreate Node for BooleanclassStandardRepresenter.RepresentByteArrayCreate Node for byte[]classStandardRepresenter.RepresentEnumCreate eNode for EnumsclassStandardRepresenter.RepresentIteratorCreate Node for IteratorclassStandardRepresenter.RepresentListCreate Node for ListclassStandardRepresenter.RepresentMapCreate Node for Map instanceprotected classStandardRepresenter.RepresentNullCreate null NodeclassStandardRepresenter.RepresentNumberCreate Node for Byte, Short, Integer, Long, BigIntegerclassStandardRepresenter.RepresentOptionalCreate Node for Optional instance (the value of null)classStandardRepresenter.RepresentPrimitiveArrayRepresents primitive arrays, such as short[] and float[], by converting them into equivalentListusing the appropriate autoboxing type.classStandardRepresenter.RepresentSetCreate Node for Set instancesclassStandardRepresenter.RepresentStringCreate Node for StringclassStandardRepresenter.RepresentUuidCreate Node for UUIDFields in org.snakeyaml.engine.v2.representer declared as RepresentToNode Modifier and Type Field Description protected RepresentToNodeBaseRepresenter. nullRepresenterin 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 Map<Class<?>,RepresentToNode>BaseRepresenter. parentClassRepresentersKeep representers which match a parent of the class to be representedprotected Map<Class<?>,RepresentToNode>BaseRepresenter. representersKeep 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 Optional<RepresentToNode>BaseRepresenter. findRepresenterFor(Object data)Find the representer which is suitable to represent the internal structure of the provided instance to a Node
-