Package org.teiid.language
Interface BulkCommand
-
- All Superinterfaces:
BatchedCommand
,Command
,LanguageObject
public interface BulkCommand extends BatchedCommand
A command the can optionally provide bulk values forParameter
s
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<? extends List<?>>
getParameterValues()
TheParameter
values.void
setParameterValues(Iterator<? extends List<?>> values)
-
Methods inherited from interface org.teiid.language.LanguageObject
acceptVisitor
-
-
-
-
Method Detail
-
getParameterValues
Iterator<? extends List<?>> getParameterValues()
TheParameter
values. May be null.- Specified by:
getParameterValues
in interfaceBatchedCommand
-
setParameterValues
void setParameterValues(Iterator<? extends List<?>> values)
- Specified by:
setParameterValues
in interfaceBatchedCommand
-
-