Package gnu.lists
Interface XConsumer
-
- All Superinterfaces:
Appendable
,Consumer
,Consumer<Object>
,DoubleConsumer
,IntConsumer
,LongConsumer
- All Known Implementing Classes:
FilterConsumer
,HttpPrinter
,NamedChildrenFilter
,NodeTree
,OrderedTuples
,PrintConsumer
,RelativeStepFilter
,ServletPrinter
,TreeList
,VoidConsumer
,XMLFilter
,XMLPrinter
public interface XConsumer extends Consumer
A Consumer extended with XML-specific methods. This should probably be in gnu.xml, but that complications TreeList. FIXME.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
beginEntity(Object baseUri)
void
endEntity()
void
writeCDATA(char[] chars, int offset, int length)
void
writeComment(char[] chars, int offset, int length)
void
writeProcessingInstruction(String target, char[] content, int offset, int length)
-
Methods inherited from interface gnu.lists.Consumer
accept, accept, accept, accept, append, append, append, endAttribute, endDocument, endElement, ignoring, startAttribute, startDocument, startElement, write, write, write, write, writeBoolean, writeDouble, writeFloat, writeInt, writeLong, writeObject
-
Methods inherited from interface java.util.function.DoubleConsumer
andThen
-
Methods inherited from interface java.util.function.IntConsumer
andThen
-
Methods inherited from interface java.util.function.LongConsumer
andThen
-
-
-
-
Method Detail
-
writeComment
void writeComment(char[] chars, int offset, int length)
-
writeProcessingInstruction
void writeProcessingInstruction(String target, char[] content, int offset, int length)
-
writeCDATA
void writeCDATA(char[] chars, int offset, int length)
-
beginEntity
void beginEntity(Object baseUri)
-
endEntity
void endEntity()
-
-