Class StandardRepresenter.RepresentPrimitiveArray
- java.lang.Object
-
- org.snakeyaml.engine.v2.representer.StandardRepresenter.RepresentPrimitiveArray
-
- All Implemented Interfaces:
RepresentToNode
- Enclosing class:
- StandardRepresenter
public class StandardRepresenter.RepresentPrimitiveArray extends Object implements RepresentToNode
Represents primitive arrays, such as short[] and float[], by converting them into equivalentListusing the appropriate autoboxing type.
-
-
Constructor Summary
Constructors Constructor Description RepresentPrimitiveArray()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.snakeyaml.engine.v2.nodes.NoderepresentData(Object data)Create a Node
-
-
-
Method Detail
-
representData
public org.snakeyaml.engine.v2.nodes.Node representData(Object data)
Description copied from interface:RepresentToNodeCreate a Node- Specified by:
representDatain interfaceRepresentToNode- Parameters:
data- the instance to represent- Returns:
- Node to dump
-
-