Uses of Interface
com.evolveum.midpoint.prism.PrismParser
-
-
Uses of PrismParser in com.evolveum.midpoint.common.rest
Methods in com.evolveum.midpoint.common.rest that return PrismParser Modifier and Type Method Description protected abstract PrismParser
MidpointAbstractProvider. getParser(InputStream entityStream)
protected PrismParser
MidpointJsonProvider. getParser(InputStream entityStream)
protected PrismParser
MidpointXmlProvider. getParser(InputStream entityStream)
protected PrismParser
MidpointYamlProvider. getParser(InputStream entityStream)
-
Uses of PrismParser in com.evolveum.midpoint.prism
Subinterfaces of PrismParser in com.evolveum.midpoint.prism Modifier and Type Interface Description interface
PrismParserNoIO
The same as PrismParser but has no IOException on parseXYZ methods.Methods in com.evolveum.midpoint.prism that return PrismParser Modifier and Type Method Description @NotNull PrismParser
PrismParser. compat()
Switches the parser into "compatibility" (or relaxed) parsing mode.@NotNull PrismParser
PrismParser. context(@NotNull ParsingContext context)
Provides a parsing context for the parser.PrismParser
PrismParser. convertMissingTypes()
@NotNull PrismParser
PrismParser. definition(ItemDefinition<?> itemDefinition)
Tells parser which definition to use when parsing item (or an item value).@NotNull PrismParser
PrismParser. json()
Sets the language of the parser to be JSON.@NotNull PrismParser
PrismParser. language(@Nullable String language)
For string inputs: sets the data language that the parser will try to parse; null means auto-detect.@NotNull PrismParser
PrismParser. name(QName itemName)
Tells parser what name to use for parsed item.@NotNull PrismParser
PrismContext. parserFor(@NotNull File file)
Creates a parser ready to process the given file.@NotNull PrismParser
PrismContext. parserFor(@NotNull InputStream stream)
Creates a parser ready to process data from the given input stream.@NotNull PrismParser
PrismParser. strict()
Switches the parser into "strict" parsing mode.@NotNull PrismParser
PrismParser. type(Class<?> typeClass)
Tells parser what data type to expect.@NotNull PrismParser
PrismParser. type(QName typeName)
Tells parser what data type to expect.@NotNull PrismParser
PrismParser. xml()
Sets the language of the parser to be XML.@NotNull PrismParser
PrismParser. yaml()
Sets the language of the parser to be YAML. -
Uses of PrismParser in com.evolveum.midpoint.prism.impl
Methods in com.evolveum.midpoint.prism.impl that return PrismParser Modifier and Type Method Description @NotNull PrismParser
PrismContextImpl. parserFor(@NotNull File file)
@NotNull PrismParser
PrismContextImpl. parserFor(@NotNull InputStream stream)
-
Uses of PrismParser in com.evolveum.midpoint.prism.impl.marshaller
Classes in com.evolveum.midpoint.prism.impl.marshaller that implement PrismParser Modifier and Type Class Description class
PrismParserImplIO
class
PrismParserImplNoIO
-
Uses of PrismParser in com.evolveum.midpoint.rest.impl
Methods in com.evolveum.midpoint.rest.impl that return PrismParser Modifier and Type Method Description protected abstract PrismParser
MidpointAbstractHttpMessageConverter. getParser(InputStream entityStream)
protected PrismParser
MidpointJsonHttpMessageConverter. getParser(InputStream entityStream)
protected PrismParser
MidpointXmlHttpMessageConverter. getParser(InputStream entityStream)
protected PrismParser
MidpointYamlHttpMessageConverter. getParser(InputStream entityStream)
-