Class ListUtil

java.lang.Object
org.apache.fop.util.ListUtil

public final class ListUtil extends Object
Provides helper functions for List.
  • Method Details

    • getLast

      public static <T> T getLast(List<T> list)
      Retrieve the last element from a list.
      Type Parameters:
      T - the type of objects stored in the list
      Parameters:
      list - the list to work on
      Returns:
      last element
    • getLastListElement

      public static ListElement getLastListElement(List list)
    • removeLast

      public static <T> T removeLast(List<T> list)
      Retrieve and remove the last element from a list.
      Type Parameters:
      T - the type of objects stored in the list
      Parameters:
      list - the list to work on
      Returns:
      previous last element