Uses of Class
com.fasterxml.aalto.out.OutputElement
-
Packages that use OutputElement Package Description com.fasterxml.aalto.out -
-
Uses of OutputElement in com.fasterxml.aalto.out
Fields in com.fasterxml.aalto.out declared as OutputElement Modifier and Type Field Description protected OutputElementStreamWriterBase. _currElemWe'll use a virtual root element (like a document node of sort), to simplify other processing, basically such that there is always a current output element instance, even when in prolog or epilog.protected OutputElementStreamWriterBase. _outputElemPoolprivate OutputElementOutputElement. _parentReference to either the parent (enclosing element) of this element, when part of active output context; or link to next reusable unused element after this one (if not part of active context).Methods in com.fasterxml.aalto.out that return OutputElement Modifier and Type Method Description protected OutputElementOutputElement. createChild(WName name)Simplest factory method, which gets called when non-namespace element output method is called.protected OutputElementOutputElement. createChild(WName name, java.lang.String uri)Full factory method, used for 'normal' namespace qualified output methods.protected static OutputElementOutputElement. createRoot()OutputElementOutputElement. getParent()protected OutputElementOutputElement. reuseAsChild(OutputElement parent, WName name)protected OutputElementOutputElement. reuseAsChild(OutputElement parent, WName name, java.lang.String nsURI)Methods in com.fasterxml.aalto.out with parameters of type OutputElement Modifier and Type Method Description protected voidOutputElement. addToPool(OutputElement poolHead)Method called to temporarily link this instance to a pool, to allow reusing of instances with the same reader.voidOutputElement. relink(OutputElement parent)Method called to reuse a recycled instance, as is, with same name.private voidOutputElement. relink(OutputElement parent, WName name, java.lang.String uri)Method called to reuse a pooled instance, but with different nameprotected OutputElementOutputElement. reuseAsChild(OutputElement parent, WName name)protected OutputElementOutputElement. reuseAsChild(OutputElement parent, WName name, java.lang.String nsURI)Constructors in com.fasterxml.aalto.out with parameters of type OutputElement Constructor Description OutputElement(OutputElement parent, WName name, java.lang.String uri, NsBinder binder)
-