Uses of Class
com.apicatalog.tree.io.TreeIOException
Packages that use TreeIOException
Package
Description
Provides a flexible, format-agnostic framework for processing tree-like data
structures.
-
Uses of TreeIOException in com.apicatalog.tree.io
Methods in com.apicatalog.tree.io that throw TreeIOExceptionModifier and TypeMethodDescriptionvoidTreeGenerator.beginList()Begins a new list (or array) structure.voidTreeGenerator.beginMap()Begins a new map (or object) structure.voidTreeGenerator.beginSet()Begins a new set structure.voidTreeGenerator.binaryValue(byte[] value) Adds a binary data value to the current context.voidTreeGenerator.booleanValue(boolean value) Adds a boolean value to the current context.voidTreeGenerator.end()Ends the current map or collection structure.voidTreeGenerator.nullValue()Adds a null value to the current context.voidTreeGenerator.numericValue(double value) Adds a double-precision floating-point value to the current context.voidTreeGenerator.numericValue(long value) Adds a long integer value.voidTreeGenerator.numericValue(BigDecimal value) Adds an arbitrary-precision decimal value to the current context.voidTreeGenerator.numericValue(BigInteger value) Adds an arbitrary-precision integer value.TreeParser.parse(InputStream is) voidTreeRenderer.render(Object node, TreeAdapter adapter, OutputStream os) voidTreeGenerator.stringValue(String value) Adds a string value.voidTreeIO.traverse(TreeGenerator generator) voidTreeTraversal.traverse(TreeGenerator generator) A high-level utility method that fully traverses the tree and drives the providedTreeGenerator. -
Uses of TreeIOException in com.apicatalog.tree.io.java
Methods in com.apicatalog.tree.io.java that throw TreeIOExceptionModifier and TypeMethodDescriptionvoidNativeMaterializer.beginList()Begins a new list (or array) structure.voidNativeMaterializer.beginMap()Begins a new map (or object) structure.voidNativeMaterializer.beginSet()Begins a new set structure.voidNativeMaterializer.binaryValue(byte[] node) Adds a binary data value to the current context.voidNativeMaterializer.booleanValue(boolean node) Adds a boolean value to the current context.voidNativeMaterializer.end()Ends the current map or collection structure.static Objectstatic ObjectNativeMaterializer.node(Object node, TreeAdapter adapter) voidNativeMaterializer.nullValue()Adds a null value to the current context.voidNativeMaterializer.numericValue(double node) Adds a double-precision floating-point value to the current context.voidNativeMaterializer.numericValue(long node) Adds a long integer value.voidNativeMaterializer.numericValue(BigDecimal node) Adds an arbitrary-precision decimal value to the current context.voidNativeMaterializer.numericValue(BigInteger node) Adds an arbitrary-precision integer value.static ObjectNativeMaterializer.scalar(Object node, TreeAdapter adapter) voidNativeMaterializer.stringValue(String node) Adds a string value.NativeMaterializer.structure(Object node, TreeAdapter adapter) The primary entry point for materialization.