Class ListUtil


  • public final class ListUtil
    extends java.lang.Object
    Provides helper functions for List.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private ListUtil()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <T> T getLast​(java.util.List<T> list)
      Retrieve the last element from a list.
      static <T> T removeLast​(java.util.List<T> list)
      Retrieve and remove the last element from a list.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ListUtil

        private ListUtil()
    • Method Detail

      • getLast

        public static <T> T getLast​(java.util.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
      • removeLast

        public static <T> T removeLast​(java.util.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