Class CasProcessorExecArgsImpl
- java.lang.Object
-
- org.apache.uima.collection.impl.metadata.cpe.CasProcessorExecArgsImpl
-
- All Implemented Interfaces:
java.io.Serializable,CasProcessorExecArgs
public class CasProcessorExecArgsImpl extends java.lang.Object implements CasProcessorExecArgs
The Class CasProcessorExecArgsImpl.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.ArrayListargsThe args.private static longserialVersionUIDThe Constant serialVersionUID.
-
Constructor Summary
Constructors Constructor Description CasProcessorExecArgsImpl()Instantiates a new cas processor exec args impl.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(CasProcessorExecArg aArg)Adds newCasProcessorExecArginstance to the list.CasProcessorExecArgget(int aIndex)Returns anCasProcessorExecArginstance located with provided index.CasProcessorExecArg[]getAll()Returns ALLCasProcessorExecArginstances.voidremove(int aIndex)RemovesCasProcessorExecArginstance found in the list in a given position.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The Constant serialVersionUID.- See Also:
- Constant Field Values
-
args
private java.util.ArrayList args
The args.
-
-
Method Detail
-
add
public void add(CasProcessorExecArg aArg)
Description copied from interface:CasProcessorExecArgsAdds newCasProcessorExecArginstance to the list.- Specified by:
addin interfaceCasProcessorExecArgs- Parameters:
aArg- - new argument
-
get
public CasProcessorExecArg get(int aIndex) throws CpeDescriptorException
Description copied from interface:CasProcessorExecArgsReturns anCasProcessorExecArginstance located with provided index.- Specified by:
getin interfaceCasProcessorExecArgs- Parameters:
aIndex- - position of argument in the list- Returns:
- -
CasProcessorExecArginstance - Throws:
CpeDescriptorException- tbd
-
getAll
public CasProcessorExecArg[] getAll()
Description copied from interface:CasProcessorExecArgsReturns ALLCasProcessorExecArginstances.- Specified by:
getAllin interfaceCasProcessorExecArgs- Returns:
- array of
CasProcessorExecArg
-
remove
public void remove(int aIndex)
Description copied from interface:CasProcessorExecArgsRemovesCasProcessorExecArginstance found in the list in a given position.- Specified by:
removein interfaceCasProcessorExecArgs- Parameters:
aIndex- - position of argument to remove.
-
-