Package yapion.hierarchy.api
Interface ObjectOutput
-
- All Known Implementing Classes:
YAPIONAnyType
,YAPIONArray
,YAPIONDataType
,YAPIONMap
,YAPIONMappingType
,YAPIONObject
,YAPIONPointer
,YAPIONValue
,YAPIONValueType
public interface ObjectOutput
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringBuilder
indentString
-
Method Summary
Modifier and Type Method Description default java.lang.String
indent(int i)
<T extends AbstractOutput>
TtoJSON(T abstractOutput)
<T extends AbstractOutput>
TtoJSONLossy(T abstractOutput)
<T extends AbstractOutput>
TtoYAPION(T abstractOutput)
-
-
-
Method Detail
-
indent
default java.lang.String indent(int i)
-
toYAPION
<T extends AbstractOutput> T toYAPION(T abstractOutput)
-
toJSON
<T extends AbstractOutput> T toJSON(T abstractOutput)
-
toJSONLossy
<T extends AbstractOutput> T toJSONLossy(T abstractOutput)
-
-