Package com.kenshoo.jooq
Class LongIdsList
- java.lang.Object
-
- com.kenshoo.jooq.LongIdsList
-
-
Constructor Summary
Constructors Constructor Description LongIdsList(org.jooq.DSLContext dslContext)LongIdsList(org.jooq.DSLContext dslContext, java.util.Collection<java.lang.Long> ids)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(T id)voidaddAll(java.util.Collection<T> ids)voidclose()java.util.List<T>getIds()<R extends org.jooq.Record,S extends org.jooq.SelectConnectByStep<R>,FT>
SimposeOnQuery(S query, org.jooq.Field<FT> idField)<R extends org.jooq.Record,S extends org.jooq.UpdateWhereStep<R>,FT>
org.jooq.UpdateConditionStep<R>imposeOnUpdate(S update, org.jooq.Field<FT> idField)booleanisEmpty()java.util.Iterator<T>iterator()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.kenshoo.jooq.IdsList
add, addAll, close, imposeOnQuery, imposeOnUpdate, isEmpty, iterator
-
-
-
-
Method Detail
-
addAll
public void addAll(java.util.Collection<T> ids)
-
iterator
public java.util.Iterator<T> iterator()
-
imposeOnQuery
public <R extends org.jooq.Record,S extends org.jooq.SelectConnectByStep<R>,FT> S imposeOnQuery(S query, org.jooq.Field<FT> idField)- Specified by:
imposeOnQueryin interfaceIdsList<T>
-
imposeOnUpdate
public <R extends org.jooq.Record,S extends org.jooq.UpdateWhereStep<R>,FT> org.jooq.UpdateConditionStep<R> imposeOnUpdate(S update, org.jooq.Field<FT> idField)- Specified by:
imposeOnUpdatein interfaceIdsList<T>
-
close
public void close()
-
getIds
public java.util.List<T> getIds()
-
-