Package org.hibernate.sql.model.ast
Class ColumnValueParameterList
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<ColumnValueParameter>
,Collection<ColumnValueParameter>
,List<ColumnValueParameter>
,RandomAccess
,SelectableConsumer
@Internal
public class ColumnValueParameterList
extends ArrayList<ColumnValueParameter>
implements SelectableConsumer
An array list for
ColumnValueParameter
that implements SelectableConsumer
to add new parameters.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.hibernate.metamodel.mapping.SelectableConsumer
SelectableConsumer.MutableSelectableMapping
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorsConstructorDescriptionColumnValueParameterList
(TableReference tableReference, ParameterUsage parameterUsage, int jdbcTypeCount) -
Method Summary
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractCollection
containsAll, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface java.util.List
containsAll
Methods inherited from interface org.hibernate.metamodel.mapping.SelectableConsumer
accept, accept
-
Constructor Details
-
ColumnValueParameterList
public ColumnValueParameterList(TableReference tableReference, ParameterUsage parameterUsage, int jdbcTypeCount)
-
-
Method Details
-
clone
- Overrides:
clone
in classArrayList<ColumnValueParameter>
-
accept
Description copied from interface:SelectableConsumer
Accept the selectable mapping. `selectIndex` is its position, the meaning of which depends on the impl and whetherSelectableMappings.forEachSelectable(SelectableConsumer)
orSelectableMappings.forEachSelectable(int, SelectableConsumer)
was used- Specified by:
accept
in interfaceSelectableConsumer
-
apply
-