Package org.yaml.snakeyaml.representer
Interface Represent
-
- All Known Implementing Classes:
Representer.RepresentJavaBean
,SafeRepresenter.RepresentArray
,SafeRepresenter.RepresentBoolean
,SafeRepresenter.RepresentByteArray
,SafeRepresenter.RepresentDate
,SafeRepresenter.RepresentEnum
,SafeRepresenter.RepresentIterator
,SafeRepresenter.RepresentList
,SafeRepresenter.RepresentMap
,SafeRepresenter.RepresentNull
,SafeRepresenter.RepresentNumber
,SafeRepresenter.RepresentPrimitiveArray
,SafeRepresenter.RepresentSet
,SafeRepresenter.RepresentString
,SafeRepresenter.RepresentUuid
public interface Represent
Create a Node Graph out of the provided Native Data Structure (Java instance).- See Also:
- Chapter 3. Processing YAML Information
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Node
representData(java.lang.Object data)
Create a Node
-
-
-
Method Detail
-
representData
Node representData(java.lang.Object data)
Create a Node- Parameters:
data
- the instance to represent- Returns:
- Node to dump
-
-