org.ojalgo.netio
Class Batch

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.ArrayList<Message>
              extended by org.ojalgo.netio.Batch
All Implemented Interfaces:
Serializable, Cloneable, Iterable<Message>, Collection<Message>, List<Message>, RandomAccess

public class Batch
extends ArrayList<Message>

See Also:
Serialized Form

Constructor Summary
Batch()
           
Batch(Collection<? extends Message> aCollection)
           
Batch(int anInitialCapacity)
           
 
Method Summary
 boolean add(String aCommand)
           
 boolean add(String[] aCommand)
           
 boolean add(String aCommand, String anArgument)
           
 boolean add(String aCommand, String anArgument, String aParameter)
           
 String toString()
           
 
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, set, size, toArray, toArray, trimToSize
 
Methods inherited from class java.util.AbstractList
equals, hashCode, iterator, listIterator, listIterator, subList
 
Methods inherited from class java.util.AbstractCollection
containsAll, removeAll, retainAll
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList
 

Constructor Detail

Batch

public Batch()

Batch

public Batch(Collection<? extends Message> aCollection)

Batch

public Batch(int anInitialCapacity)
Method Detail

add

public boolean add(String aCommand)

add

public boolean add(String aCommand,
                   String anArgument)

add

public boolean add(String aCommand,
                   String anArgument,
                   String aParameter)

add

public boolean add(String[] aCommand)

toString

public String toString()
Overrides:
toString in class AbstractCollection<Message>