public class DefaultNElementParser extends Object implements net.thevpc.nuts.elem.NElementParser
| Constructor and Description |
|---|
DefaultNElementParser() |
| Modifier and Type | Method and Description |
|---|---|
net.thevpc.nuts.elem.NElementParser |
doWithMapperStore(Consumer<net.thevpc.nuts.elem.NElementMapperStore> doWith) |
Object |
elementToObject(net.thevpc.nuts.elem.NElement o,
Type type) |
net.thevpc.nuts.format.NContentType |
getContentType() |
net.thevpc.nuts.time.NProgressFactory |
getProgressFactory() |
int |
getSupportLevel(net.thevpc.nuts.spi.NSupportLevelContext context) |
boolean |
isLogProgress() |
boolean |
isNtf() |
boolean |
isTraceProgress() |
net.thevpc.nuts.elem.NElementParser |
json() |
net.thevpc.nuts.elem.NElementMapperStore |
mapperStore() |
net.thevpc.nuts.elem.NElement |
parse(byte[] bytes) |
<T> T |
parse(byte[] bytes,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(File file) |
<T> T |
parse(File file,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(InputStream inputStream) |
<T> T |
parse(InputStream inputStream,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(net.thevpc.nuts.io.NPath file) |
<T> T |
parse(net.thevpc.nuts.io.NPath path,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(Path file) |
<T> T |
parse(Path file,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(Reader reader) |
<T> T |
parse(Reader reader,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(String string) |
<T> T |
parse(String string,
Class<T> clazz) |
net.thevpc.nuts.elem.NElement |
parse(URL url) |
<T> T |
parse(URL url,
Class<T> clazz) |
<T> T |
parseWithSource(byte[] bytes,
Class<T> clazz,
Object source) |
net.thevpc.nuts.elem.NElement |
parseWithSource(byte[] bytes,
Object source) |
<T> T |
parseWithSource(InputStream inputStream,
Class<T> clazz,
Object source) |
net.thevpc.nuts.elem.NElement |
parseWithSource(InputStream inputStream,
Object source) |
<T> T |
parseWithSource(Reader reader,
Class<T> clazz,
Object source) |
net.thevpc.nuts.elem.NElement |
parseWithSource(Reader reader,
Object source) |
<T> T |
parseWithSource(String string,
Class<T> clazz,
Object source) |
net.thevpc.nuts.elem.NElement |
parseWithSource(String string,
Object source) |
net.thevpc.nuts.elem.NElementParser |
setContentType(net.thevpc.nuts.format.NContentType contentType) |
net.thevpc.nuts.elem.NElementParser |
setLogProgress(boolean logProgress) |
net.thevpc.nuts.elem.NElementParser |
setNtf(boolean ntf) |
net.thevpc.nuts.elem.NElementParser |
setProgressFactory(net.thevpc.nuts.time.NProgressFactory progressFactory) |
net.thevpc.nuts.elem.NElementParser |
setTraceProgress(boolean traceProgress) |
net.thevpc.nuts.elem.NElementParser |
tson() |
net.thevpc.nuts.elem.NElementParser |
xml() |
net.thevpc.nuts.elem.NElementParser |
yaml() |
public boolean isNtf()
isNtf in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser setNtf(boolean ntf)
setNtf in interface net.thevpc.nuts.elem.NElementParserpublic boolean isLogProgress()
isLogProgress in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser setLogProgress(boolean logProgress)
setLogProgress in interface net.thevpc.nuts.elem.NElementParserpublic boolean isTraceProgress()
isTraceProgress in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser setTraceProgress(boolean traceProgress)
setTraceProgress in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.format.NContentType getContentType()
getContentType in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser setContentType(net.thevpc.nuts.format.NContentType contentType)
setContentType in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser json()
json in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser yaml()
yaml in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser tson()
tson in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser xml()
xml in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(URL url, Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(net.thevpc.nuts.io.NPath path,
Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(InputStream inputStream, Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parseWithSource(InputStream inputStream, Class<T> clazz, Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(String string, Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parseWithSource(String string, Class<T> clazz, Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(byte[] bytes,
Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parseWithSource(byte[] bytes,
Class<T> clazz,
Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(Reader reader, Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parseWithSource(Reader reader, Class<T> clazz, Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(Path file, Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic <T> T parse(File file, Class<T> clazz)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(URL url)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(InputStream inputStream)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parseWithSource(InputStream inputStream, Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(String string)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(byte[] bytes)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(Reader reader)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parseWithSource(String string, Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parseWithSource(byte[] bytes,
Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parseWithSource(Reader reader, Object source)
parseWithSource in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(Path file)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(File file)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElement parse(net.thevpc.nuts.io.NPath file)
parse in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementMapperStore mapperStore()
mapperStore in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser doWithMapperStore(Consumer<net.thevpc.nuts.elem.NElementMapperStore> doWith)
doWithMapperStore in interface net.thevpc.nuts.elem.NElementParserpublic int getSupportLevel(net.thevpc.nuts.spi.NSupportLevelContext context)
getSupportLevel in interface net.thevpc.nuts.spi.NComponentpublic net.thevpc.nuts.time.NProgressFactory getProgressFactory()
getProgressFactory in interface net.thevpc.nuts.elem.NElementParserpublic net.thevpc.nuts.elem.NElementParser setProgressFactory(net.thevpc.nuts.time.NProgressFactory progressFactory)
setProgressFactory in interface net.thevpc.nuts.elem.NElementParserCopyright © 2025 vpc open source initiative. All rights reserved.