Uses of Class
org.codehaus.staxmate.out.SMOutputtable
-
Packages that use SMOutputtable Package Description org.codehaus.staxmate.out Package contains classes for output functionality. -
-
Uses of SMOutputtable in org.codehaus.staxmate.out
Subclasses of SMOutputtable in org.codehaus.staxmate.out Modifier and Type Class Description classSMBufferedElementBuffered version ofSMOutputElement; starts its life buffered, so that it, its attributes and content are not automatically written to the underlying stream, but only when buffered instance is released.classSMBufferedFragmentBuffered fragment; starts its life buffered, so that its content are not automatically written to the underlying stream, but only when buffered instance is released.classSMOAttributeSimple container class for storing definition of a buffered element attribute.static classSMOAttribute.Binarystatic classSMOAttribute.IntAttributeclassSMOCDataprivate static classSMOCData.ArrayBasedprivate static classSMOCData.ArrayBased3private static classSMOCData.StringBasedclassSMOCharactersprivate static classSMOCharacters.ArrayBasedprivate static classSMOCharacters.ArrayBased3private static classSMOCharacters.StringBasedclassSMOCommentSimple container class for storing definition of a buffered comment node.classSMOEntityRefclassSMONamespaceSimple container class for storing a namespace pre-declarationclassSMOProcInstrclassSMOTypedValueBase class for buffered valuesprivate static classSMOTypedValue.BinaryValueprivate static classSMOTypedValue.BooleanValueprivate static classSMOTypedValue.DoubleValueprivate static classSMOTypedValue.IntValueprivate static classSMOTypedValue.LongValueclassSMOutputContainerIntermediate abstract output class for StaxMate, which is used as the base for all output nodes that can contain other nodes.classSMOutputDocumentOutput class that models a full XML document, with xml declaration.classSMOutputElementOutput class that models an outputtable XML element.classSMRootFragmentConcrete non-buffered fragment (== container) class used as the root level output container.(package private) classSMSimpleOutputIntermediate base class used for simple (non-container) output nodes; comments, processing instructions, text, CDATA and entities.Fields in org.codehaus.staxmate.out declared as SMOutputtable Modifier and Type Field Description protected SMOutputtableSMOutputContainer. _firstChildFirst child node that has not yet been completely output to the underlying stream.protected SMOutputtableSMOutputContainer. _lastChildLast child node that has not been output to the underlying stream.protected SMOutputtableSMOutputtable. _nextMethods in org.codehaus.staxmate.out that return SMOutputtable Modifier and Type Method Description static SMOutputtableSMOCData. create(java.lang.String text)static SMOutputtableSMOCharacters. create(java.lang.String text)SMOutputtableSMOutputContext. createAttribute(SMNamespace ns, java.lang.String localName, byte[] value)SMOutputtableSMOutputContext. createAttribute(SMNamespace ns, java.lang.String localName, int value)SMOutputtableSMOutputContext. createAttribute(SMNamespace ns, java.lang.String localName, java.lang.String value)SMOutputtableSMOutputContext. createCData(char[] buf, int offset, int len)SMOutputtableSMOutputContext. createCData(java.lang.String text)SMOutputtableSMOutputContext. createCharacters(char[] buf, int offset, int len)SMOutputtableSMOutputContext. createCharacters(java.lang.String text)SMOutputtableSMOutputContext. createComment(java.lang.String text)SMOutputtableSMOutputContext. createEntityRef(java.lang.String name)SMOutputtableSMOutputContext. createNamespace(SMNamespace ns, SMNamespace parentDefaultNS, int parentNsCount)Method called bySMOutputElementto add buffered namespace pre-declaration.static SMOutputtableSMOCData. createNonShared(char[] buf, int offset, int len)static SMOutputtableSMOCharacters. createNonShared(char[] buf, int offset, int len)SMOutputtableSMOutputContext. createNonSharedCData(char[] buf, int offset, int len)Specialized alternative to {link #createCData(char[],int,int)} that can count on the passed char array NOT being shared.SMOutputtableSMOutputContext. createNonSharedCharacters(char[] buf, int offset, int len)Specialized alternative to {link #createCharacters(char[],int,int)} that can count on the passed char array NOT being shared.SMOutputtableSMOutputContext. createProcessingInstruction(java.lang.String target, java.lang.String data)static SMOutputtableSMOCData. createShared(char[] buf, int offset, int len)static SMOutputtableSMOCharacters. createShared(char[] buf, int offset, int len)SMOutputtableSMOutputContext. createValue(boolean value)SMOutputtableSMOutputContext. createValue(byte[] buffer)SMOutputtableSMOutputContext. createValue(byte[] buffer, int offset, int length)SMOutputtableSMOutputContext. createValue(double value)SMOutputtableSMOutputContext. createValue(int value)SMOutputtableSMOutputContext. createValue(long value)protected SMOutputtableSMOutputtable. getNext()Methods in org.codehaus.staxmate.out with parameters of type SMOutputtable Modifier and Type Method Description protected voidSMBufferedFragment. _childReleased(SMOutputtable child)protected abstract voidSMOutputContainer. _childReleased(SMOutputtable child)Method called by a child, when it is released and neither is or contains any buffered entities.protected voidSMOutputElement. _childReleased(SMOutputtable child)protected voidSMRootFragment. _childReleased(SMOutputtable child)protected voidSMOutputContainer. _linkNewChild(SMOutputtable n)protected voidSMOutputtable. _linkNext(SMOutputtable next)
-