Class ContainerQueue<E>

    • Constructor Detail

      • ContainerQueue

        public ContainerQueue​(java.util.Queue<E> delegate)
    • Method Detail

      • element

        public E element()
        Specified by:
        element in interface java.util.Queue<E>
        Category
        READ
      • offer

        public boolean offer​(E o)
        Specified by:
        offer in interface java.util.Queue<E>
        Category
        WRITE
      • peek

        public E peek()
        Specified by:
        peek in interface java.util.Queue<E>
        Category
        READ
      • poll

        public E poll()
        Specified by:
        poll in interface java.util.Queue<E>
        Category
        WRITE
      • remove

        public E remove()
        Specified by:
        remove in interface java.util.Queue<E>
        Category
        WRITE