Package org.apache.fop.util
Class ListUtil
- java.lang.Object
-
- org.apache.fop.util.ListUtil
-
public final class ListUtil extends java.lang.Object
Provides helper functions forList
.
-
-
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.
-
-
-
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
-
-