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.ArrayList
args
The args.private static long
serialVersionUID
The 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 void
add(CasProcessorExecArg aArg)
Adds newCasProcessorExecArg
instance to the list.CasProcessorExecArg
get(int aIndex)
Returns anCasProcessorExecArg
instance located with provided index.CasProcessorExecArg[]
getAll()
Returns ALLCasProcessorExecArg
instances.void
remove(int aIndex)
RemovesCasProcessorExecArg
instance 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:CasProcessorExecArgs
Adds newCasProcessorExecArg
instance to the list.- Specified by:
add
in interfaceCasProcessorExecArgs
- Parameters:
aArg
- - new argument
-
get
public CasProcessorExecArg get(int aIndex) throws CpeDescriptorException
Description copied from interface:CasProcessorExecArgs
Returns anCasProcessorExecArg
instance located with provided index.- Specified by:
get
in interfaceCasProcessorExecArgs
- Parameters:
aIndex
- - position of argument in the list- Returns:
- -
CasProcessorExecArg
instance - Throws:
CpeDescriptorException
- tbd
-
getAll
public CasProcessorExecArg[] getAll()
Description copied from interface:CasProcessorExecArgs
Returns ALLCasProcessorExecArg
instances.- Specified by:
getAll
in interfaceCasProcessorExecArgs
- Returns:
- array of
CasProcessorExecArg
-
remove
public void remove(int aIndex)
Description copied from interface:CasProcessorExecArgs
RemovesCasProcessorExecArg
instance found in the list in a given position.- Specified by:
remove
in interfaceCasProcessorExecArgs
- Parameters:
aIndex
- - position of argument to remove.
-
-