Class JaxbListWrapper<T>

    • Constructor Detail

      • JaxbListWrapper

        public JaxbListWrapper()
      • JaxbListWrapper

        public JaxbListWrapper​(Collection<? extends T> objects)
    • Method Detail

      • getObjects

        public List<T> getObjects()
      • setObjects

        public void setObjects​(List<? extends T> objects)
      • get

        public T get​(int index)
      • add

        public boolean add​(T obj)
      • getCount

        public Integer getCount()
      • setCount

        public void setCount​(Integer count)
      • size

        public int size()
      • getTotalCount

        public Integer getTotalCount()
      • setTotalCount

        public void setTotalCount​(Integer totalCount)
      • getOffset

        public Integer getOffset()
      • setOffset

        public void setOffset​(Integer offset)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • add

        public void add​(int index,
                        T obj)
      • addAll

        public boolean addAll​(Collection<? extends T> objs)
      • addAll

        public boolean addAll​(int index,
                              Collection<? extends T> objs)
      • clear

        public void clear()
      • contains

        public boolean contains​(Object obj)
      • containsAll

        public boolean containsAll​(Collection<?> objs)
      • indexOf

        public int indexOf​(Object obj)
      • isEmpty

        public boolean isEmpty()
      • lastIndexOf

        public int lastIndexOf​(Object obj)
      • listIterator

        public ListIterator<T> listIterator​(int index)
      • remove

        public boolean remove​(Object obj)
      • remove

        public T remove​(int index)
      • removeAll

        public boolean removeAll​(Collection<?> objs)
      • retainAll

        public boolean retainAll​(Collection<?> objs)
      • set

        public T set​(int index,
                     T obj)
      • subList

        public List<T> subList​(int fromIndex,
                               int toIndex)
      • toArray

        public Object[] toArray()
      • toArray

        public <T> T[] toArray​(T[] type)