Class NullLexicalProcessor
- java.lang.Object
-
- com.evolveum.midpoint.prism.impl.lex.json.NullLexicalProcessor
-
- All Implemented Interfaces:
LexicalProcessor<XNodeImpl>
public class NullLexicalProcessor extends Object implements 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
Constructors Constructor Description NullLexicalProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canRead(@NotNull File file)
Checks if the processor can read from a given file.boolean
canRead(@NotNull String dataString)
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.
-
-
-
Method Detail
-
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
public boolean canRead(@NotNull @NotNull File file)
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
public boolean canRead(@NotNull @NotNull String dataString)
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
-
-