Class Lists

Object
org.thymeleaf.expression.Lists

public final class Lists extends Object

Expression Object for performing list operations inside Thymeleaf Standard Expressions.

An object of this class is usually available in variable evaluation expressions with the name #lists.

Since:
1.0
Author:
Daniel Fernández
  • Constructor Details

    • Lists

      public Lists()
  • Method Details

    • toList

      public List<?> toList(Object target)
    • size

      public int size(List<?> target)
    • isEmpty

      public boolean isEmpty(List<?> target)
    • contains

      public boolean contains(List<?> target, Object element)
    • containsAll

      public boolean containsAll(List<?> target, Object[] elements)
    • containsAll

      public boolean containsAll(List<?> target, Collection<?> elements)
    • sort

      public <T extends Comparable<? super T>> List<T> sort(List<T> list)
    • sort

      public <T> List<T> sort(List<T> list, Comparator<? super T> c)