Class Maps


  • public final class Maps
    extends 

    Expression Object for performing map operations inside Thymeleaf Standard Expressions.

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

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

      Constructors 
      Constructor Description
      Maps()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <X> boolean <? super X,​?> target, <X> keys)  
      <X> boolean <? super X,​?> target, X[] keys)  
      <X> boolean <?,​? super X> target, <X> values)  
      <X> boolean <?,​? super X> target, X[] values)  
      <X> boolean <? super X,​?> target, X key)  
      <X> boolean <?,​? super X> target, X value)  
      boolean <?,​?> target)  
      int <?,​?> target)  
      • Methods inherited from class java.lang.

        , , , , , , , , , ,
    • Constructor Detail

      • Maps

        public Maps()
    • Method Detail

      • size

        public int size​(<?,​?> target)
      • isEmpty

        public boolean isEmpty​(<?,​?> target)
      • containsKey

        public <X> boolean containsKey​(<? super X,​?> target,
                                       X key)
      • containsValue

        public <X> boolean containsValue​(<?,​? super X> target,
                                         X value)
      • containsAllKeys

        public <X> boolean containsAllKeys​(<? super X,​?> target,
                                           X[] keys)
      • containsAllKeys

        public <X> boolean containsAllKeys​(<? super X,​?> target,
                                           <X> keys)
      • containsAllValues

        public <X> boolean containsAllValues​(<?,​? super X> target,
                                             X[] values)
      • containsAllValues

        public <X> boolean containsAllValues​(<?,​? super X> target,
                                             <X> values)