Uses of Interface
flattree.flat.WriteLine

Packages that use WriteLine
flattree.flat   
flattree.flat.write   
flattree.tree   
 

Uses of WriteLine in flattree.flat
 

Methods in flattree.flat that return WriteLine
 WriteLine FlatWriter.next()
          Move to the next line.
 

Uses of WriteLine in flattree.flat.write
 

Classes in flattree.flat.write that implement WriteLine
 class DelimitedWriteLine
          A line delimited by one or more characters.
 class FixedLengthWriteLine
          A line bounded by a fixed length.
 class StringWriteLine
          A line wrapping a String.
 

Constructors in flattree.flat.write with parameters of type WriteLine
DelimitedWriteLine(WriteLine line, String delimiter)
          Delimit the given line.
FixedLengthWriteLine(WriteLine line, int length)
          Bound the given line.
 

Uses of WriteLine in flattree.tree
 

Methods in flattree.tree that return WriteLine
protected  WriteLine DelimitedNode.beforeWrite(WriteLine line)
          Limits the given line to with the configured delimiter.
protected  WriteLine SyntheticNode.beforeWrite(WriteLine line)
          Limits the given line to a zero length.
protected  WriteLine AbstractNode.beforeWrite(WriteLine line)
          Hook method for subclasses to wrap the line to write to.
protected  WriteLine FixedLengthNode.beforeWrite(WriteLine line)
          Limits the given line to with the configured length.
 

Methods in flattree.tree with parameters of type WriteLine
protected  WriteLine DelimitedNode.beforeWrite(WriteLine line)
          Limits the given line to with the configured delimiter.
protected  WriteLine SyntheticNode.beforeWrite(WriteLine line)
          Limits the given line to a zero length.
protected  WriteLine AbstractNode.beforeWrite(WriteLine line)
          Hook method for subclasses to wrap the line to write to.
protected  WriteLine FixedLengthNode.beforeWrite(WriteLine line)
          Limits the given line to with the configured length.
 void AbstractLeaf.write(WriteLine line, State state)
          Delegates to AbstractLeaf.writeImpl(WriteLine, State) and sets the written range on the State.
 void AbstractNode.write(WriteLine line, State state)
          Delegates writing to all leaves and sets the range on the State.
 void Leaf.write(WriteLine line, State state)
          Write this leaf to the given line.
 void Node.write(WriteLine line, State state)
          Write this node to the given line.
protected  void DelimitedLeaf.writeDelimiter(WriteLine line)
           
protected  void ConstantLeaf.writeImpl(WriteLine line, State state)
          Writes the constant.
protected  void JumpLeaf.writeImpl(WriteLine line, State state)
           
protected  void SkipLeaf.writeImpl(WriteLine line, State state)
           
protected  void ValueLeaf.writeImpl(WriteLine line, State state)
           
protected abstract  void AbstractLeaf.writeImpl(WriteLine line, State state)
          Do the actual writing.
 void DelimitedLeaf.writeValue(WriteLine line, String value)
           
 void FixedLengthLeaf.writeValue(WriteLine line, String value)
           
protected  void SyntheticLeaf.writeValue(WriteLine line, String value)
          Writes nothing.
protected abstract  void ValueLeaf.writeValue(WriteLine line, String value)
           
 void QuotedDelimitedLeaf.writeValue(WriteLine line, String value)
           
 void EscapedDelimitedLeaf.writeValue(WriteLine line, String value)
           
 void PaddedFixedLengthLeaf.writeValue(WriteLine line, String value)
           
 



Copyright © 2011. All Rights Reserved.