Class StringIdsList

  • All Implemented Interfaces:
    IdsList<java.lang.String>, java.lang.AutoCloseable, java.lang.Iterable<java.lang.String>

    public class StringIdsList
    extends java.lang.Object
    implements IdsList<java.lang.String>
    • Constructor Summary

      Constructors 
      Constructor Description
      StringIdsList​(org.jooq.DSLContext dslContext)  
      StringIdsList​(org.jooq.DSLContext dslContext, java.util.Collection<java.lang.String> ids)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(T id)  
      void addAll​(java.util.Collection<T> ids)  
      void close()  
      java.util.List<T> getIds()  
      <R extends org.jooq.Record,​S extends org.jooq.SelectConnectByStep<R>,​FT>
      S
      imposeOnQuery​(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)  
      boolean isEmpty()  
      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 java.lang.Iterable

        forEach, spliterator
    • Constructor Detail

      • StringIdsList

        public StringIdsList​(org.jooq.DSLContext dslContext)
      • StringIdsList

        public StringIdsList​(org.jooq.DSLContext dslContext,
                             java.util.Collection<java.lang.String> ids)
    • Method Detail

      • add

        public void add​(T id)
        Specified by:
        add in interface IdsList<T>
      • addAll

        public void addAll​(java.util.Collection<T> ids)
        Specified by:
        addAll in interface IdsList<T>
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface IdsList<T>
      • iterator

        public java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface IdsList<T>
        Specified by:
        iterator in interface java.lang.Iterable<T>
      • 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:
        imposeOnQuery in interface IdsList<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:
        imposeOnUpdate in interface IdsList<T>
      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface IdsList<T>
      • getIds

        public java.util.List<T> getIds()