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
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CasProcessorExecArgsImpl()
-
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.
-
-
-
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.
-
-