|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.IOContainer
public class IOContainer
Input for Operator.apply(). Instances of this class are containers for
IOObjects. They are available by calling one of the getInput
methods. The operator can choose between keeping the IOObject in the
container or delete it using it.
IOObject
Field Summary | |
---|---|
static IOContainer |
DUMMY_IO_CONTAINER
|
private java.util.List<IOObject> |
ioObjects
|
Constructor Summary | |
---|---|
IOContainer()
Creates a new and empty IOContainer. |
|
IOContainer(java.util.Collection<IOObject> objectCollection)
Creates a new IOContainer containing the contents of the Collection which must contain only IOObjects. |
|
IOContainer(IOObject[] objectArray)
|
Method Summary | ||
---|---|---|
IOContainer |
append(java.util.Collection<IOObject> output)
Appends this container's IOObjects to output. |
|
IOContainer |
append(IOObject object)
Creates a new IOContainer by adding all IOObjects of this container to the given IOObject. |
|
IOContainer |
append(IOObject[] output)
Creates a new IOContainer by adding all IOObjects of this container to the given IOObjects. |
|
boolean |
contains(java.lang.Class<? extends IOObject> cls)
Returns true if this IOContainer containts an IOObject of the desired class. |
|
IOContainer |
copy()
|
|
|
get(java.lang.Class<T> cls)
Gets the first IOObject which is of class cls. |
|
|
get(java.lang.Class<T> cls,
int nr)
Gets the nr-th IOObject which is of class cls. |
|
IOObject |
getElementAt(int index)
Returns the n-th IOObject in this container. |
|
private
|
getInput(java.lang.Class<T> cls,
int nr,
boolean remove)
Gets the nr-th IOObject which is of class cls. |
|
IOObject[] |
getIOObjects()
Returns all IOObjects. |
|
IOContainer |
prepend(IOObject object)
Creates a new IOContainer by adding the given object before the IOObjects of this container. |
|
IOContainer |
prepend(IOObject[] output)
Creates a new IOContainer by adding the given objects before the IOObjects of this container. |
|
|
remove(java.lang.Class<T> cls)
Removes the first IOObject which is of class cls. |
|
|
remove(java.lang.Class<T> cls,
int nr)
Removes the nr-th IOObject which is of class cls. |
|
IOObject |
removeElementAt(int index)
Removes and returns the n-th IOObject in this container. |
|
int |
size()
Returns the number of IOObject s in this container. |
|
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private java.util.List<IOObject> ioObjects
public static final IOContainer DUMMY_IO_CONTAINER
Constructor Detail |
---|
public IOContainer()
public IOContainer(java.util.Collection<IOObject> objectCollection)
public IOContainer(IOObject[] objectArray)
Method Detail |
---|
public java.lang.String toString()
toString
in class java.lang.Object
public int size()
IOObject
s in this container.
public IOObject getElementAt(int index)
IOObject
in this container.
public IOObject removeElementAt(int index)
IOObject
in this container.
public IOObject[] getIOObjects()
public <T extends IOObject> T get(java.lang.Class<T> cls) throws MissingIOObjectException
MissingIOObjectException
public <T extends IOObject> T get(java.lang.Class<T> cls, int nr) throws MissingIOObjectException
MissingIOObjectException
public <T extends IOObject> T remove(java.lang.Class<T> cls) throws MissingIOObjectException
MissingIOObjectException
public <T extends IOObject> T remove(java.lang.Class<T> cls, int nr) throws MissingIOObjectException
MissingIOObjectException
public boolean contains(java.lang.Class<? extends IOObject> cls)
private <T extends IOObject> T getInput(java.lang.Class<T> cls, int nr, boolean remove) throws MissingIOObjectException
MissingIOObjectException
public IOContainer append(IOObject object)
public IOContainer append(IOObject[] output)
public IOContainer prepend(IOObject object)
public IOContainer prepend(IOObject[] output)
public IOContainer append(java.util.Collection<IOObject> output)
public IOContainer copy()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |