public interface StepOutputItems
This interface represents an instance of output items produced by a step.
IMPORTANT: This interface should never be used outside the context and lifecycle of the plugin step to which they were provided. This means that an instance should not be passed as an argument to any method nor stored in a static location external to the plugin step instance that obtained it.
Modifier and Type | Method and Description |
---|---|
int |
getCount()
Return the number of output items.
|
StepOutputItem |
getItem(int index)
The output item at the given 0-based index.
|
int getCount()
StepOutputItem getItem(int index) throws java.lang.IndexOutOfBoundsException
index
- The 0-based index of the output item.java.lang.IndexOutOfBoundsException
- if index is out of bounds.Copyright © 2012 SAS Institute Inc. All Rights Reserved.