Uses of Interface
org.codice.ddf.parser.ParserConfigurator
-
Uses of ParserConfigurator in org.codice.ddf.parser
Methods in org.codice.ddf.parser that return ParserConfiguratorModifier and TypeMethodDescriptionParserConfigurator.addProperties(Map<String, Object> properties) Adds a collection of properties with the given key-value mappings for the underlying parser.ParserConfigurator.addProperty(String key, Object val) Adds a property with the given key and value for the underlying parser to use.Parser.configureParser(List<String> contextPath, ClassLoader loader) Creates an initial configurator object to be used to facilitate the marshaling and unmarshaling processes.ParserConfigurator.setAdapter(javax.xml.bind.annotation.adapters.XmlAdapter adapter) Sets XML-specific adapter.ParserConfigurator.setClassLoader(ClassLoader loader) Sets the classloader to be used by underlying implementations.ParserConfigurator.setContextPath(List<String> contextPath) Sets the list of paths that implementations can search in order to find binding information.ParserConfigurator.setHandler(javax.xml.bind.ValidationEventHandler handler) Sets XML-specific validation handler.Methods in org.codice.ddf.parser with parameters of type ParserConfiguratorModifier and TypeMethodDescriptionvoidParser.marshal(ParserConfigurator configurator, Object obj, OutputStream os) Converts an object graph into the appropriate output format, writing it to the given stream.voidParser.marshal(ParserConfigurator configurator, Object obj, Node node) Converts an object graph into a Node,<T> TParser.unmarshal(ParserConfigurator configurator, Class<? extends T> cls, InputStream stream) Converts a representation of an object graph into an instance of typeT.<T> TParser.unmarshal(ParserConfigurator configurator, Class<? extends T> cls, Source source) Converts a representation of an object graph into an instance of typeT.<T> TParser.unmarshal(ParserConfigurator configurator, Class<? extends T> cls, Node node) Converts a representation of an object graph into an instance of typeT.