Class JsonValueReader<T>
- java.lang.Object
-
- java.io.Reader
-
- org.apache.johnzon.jsonb.extension.JsonValueReader<T>
-
-
Field Summary
Fields Modifier and Type Field Description private ByteArrayInputStreamfallbackDelegateprivate jakarta.json.JsonStructureinputprivate Tresult
-
Constructor Summary
Constructors Constructor Description JsonValueReader(jakarta.json.JsonStructure input)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()jakarta.json.JsonStructureget()jakarta.json.JsonStructuregetInput()Deprecated.TgetResult()Deprecated.intread(char[] cbuf, int off, int len)voidsetResult(T result)Deprecated.-
Methods inherited from class java.io.Reader
mark, markSupported, nullReader, read, read, read, ready, reset, skip, transferTo
-
-
-
-
Field Detail
-
input
private final jakarta.json.JsonStructure input
-
fallbackDelegate
private ByteArrayInputStream fallbackDelegate
-
result
private T result
-
-
Method Detail
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classReader- Throws:
IOException
-
getInput
@Deprecated public jakarta.json.JsonStructure getInput()
Deprecated.
-
getResult
@Deprecated public T getResult()
Deprecated.
-
setResult
@Deprecated public void setResult(T result)
Deprecated.
-
-