Class Listables.IListableList<E>

java.lang.Object
org.magicwerk.brownies.collections.Listables.IListableList<E>
All Implemented Interfaces:
IListable<E>
Enclosing class:
Listables

public static class Listables.IListableList<E> extends Object implements IListable<E>
Class Listables.IListableList implements the IListable interface for Lists.
  • Field Details

  • Constructor Details

    • IListableList

      public IListableList(List<E> list)
  • Method Details

    • size

      public int size()
      Description copied from interface: IListable
      Return size of list
      Specified by:
      size in interface IListable<E>
    • get

      public E get(int index)
      Description copied from interface: IListable
      Return element at specified position
      Specified by:
      get in interface IListable<E>