Class NullLexicalProcessor
java.lang.Object
com.evolveum.midpoint.prism.impl.lex.json.NullLexicalProcessor
- All Implemented Interfaces:
LexicalProcessor<XNodeImpl>
"Null" processor that reads XNodes into XNodes and writes XNodes as XNodes.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.evolveum.midpoint.prism.impl.lex.LexicalProcessor
LexicalProcessor.RootXNodeHandler
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Checks if the processor can read from a given file.boolean
Checks if the processor can read from a given string.@NotNull RootXNodeImpl
read
(@NotNull ParserSource source, @NotNull ParsingContext parsingContext) @NotNull List<RootXNodeImpl>
readObjects
(@NotNull ParserSource source, @NotNull ParsingContext parsingContext) void
readObjectsIteratively
(@NotNull ParserSource source, @NotNull ParsingContext parsingContext, LexicalProcessor.RootXNodeHandler handler) @NotNull XNodeImpl
write
(@NotNull RootXNode xnode, @Nullable SerializationContext serializationContext) Serializes a root node into XNode tree.@NotNull XNodeImpl
write
(@NotNull XNode xnode, @NotNull QName rootElementName, @Nullable SerializationContext serializationContext) Serializes a non-root node into XNode tree.@NotNull XNodeImpl
write
(@NotNull List<RootXNodeImpl> roots, @Nullable SerializationContext context) TODO Not supported for NullLexicalProcessor, though.
-
Constructor Details
-
NullLexicalProcessor
public NullLexicalProcessor()
-
-
Method Details
-
read
@NotNull public @NotNull RootXNodeImpl read(@NotNull @NotNull ParserSource source, @NotNull @NotNull ParsingContext parsingContext) - Specified by:
read
in interfaceLexicalProcessor<XNodeImpl>
-
readObjects
@NotNull public @NotNull List<RootXNodeImpl> readObjects(@NotNull @NotNull ParserSource source, @NotNull @NotNull ParsingContext parsingContext) - Specified by:
readObjects
in interfaceLexicalProcessor<XNodeImpl>
-
readObjectsIteratively
public void readObjectsIteratively(@NotNull @NotNull ParserSource source, @NotNull @NotNull ParsingContext parsingContext, LexicalProcessor.RootXNodeHandler handler) - Specified by:
readObjectsIteratively
in interfaceLexicalProcessor<XNodeImpl>
-
canRead
Description copied from interface:LexicalProcessor
Checks if the processor can read from a given file. (Guessed by file extension, for now.) Used for autodetection of language.- Specified by:
canRead
in interfaceLexicalProcessor<XNodeImpl>
-
canRead
Description copied from interface:LexicalProcessor
Checks if the processor can read from a given string. Note this is only an approximative information (for now). Used for autodetection of language.- Specified by:
canRead
in interfaceLexicalProcessor<XNodeImpl>
-
write
@NotNull public @NotNull XNodeImpl write(@NotNull @NotNull RootXNode xnode, @Nullable @Nullable SerializationContext serializationContext) throws SchemaException Description copied from interface:LexicalProcessor
Serializes a root node into XNode tree.- Specified by:
write
in interfaceLexicalProcessor<XNodeImpl>
- Throws:
SchemaException
-
write
@NotNull public @NotNull XNodeImpl write(@NotNull @NotNull XNode xnode, @NotNull @NotNull QName rootElementName, @Nullable @Nullable SerializationContext serializationContext) throws SchemaException Description copied from interface:LexicalProcessor
Serializes a non-root node into XNode tree. So, xnode SHOULD NOT be a root node (at least for now). TODO consider removing - replacing by the previous form.- Specified by:
write
in interfaceLexicalProcessor<XNodeImpl>
- Throws:
SchemaException
-
write
@NotNull public @NotNull XNodeImpl write(@NotNull @NotNull List<RootXNodeImpl> roots, @Nullable @Nullable SerializationContext context) throws SchemaException Description copied from interface:LexicalProcessor
TODO Not supported for NullLexicalProcessor, though.- Specified by:
write
in interfaceLexicalProcessor<XNodeImpl>
- Throws:
SchemaException
-