Interface JexlArithmetic.MapBuilder

Enclosing class:
JexlArithmetic

public static interface JexlArithmetic.MapBuilder
Helper interface used when creating a map literal.

The default implementation creates a java.util.HashMap.

  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Creates the actual "map" instance.
    void
    put(Object key, Object value)
    Adds a new entry to the map.
  • Method Details Link icon

    • create Link icon

      Creates the actual "map" instance.
      Returns:
      the map
    • put Link icon

      void put(Object key, Object value)
      Adds a new entry to the map.
      Parameters:
      key - the map entry key
      value - the map entry value