Class BooleanMap

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Boolean>

public class BooleanMap extends HashMap<String,Boolean>
Map implementation takes a Set of Strings and converts to Map where the string is the map key and value is the Boolean true, convenience collection for expression language.
Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
  • Constructor Details

    • BooleanMap

      public BooleanMap(Map<? extends String,? extends Boolean> m)
      Copy constructor.
      Parameters:
      m - map to copy
    • BooleanMap

      public BooleanMap(Set<String> keys)
      Sets an initial value of Boolean.TRUE for a given provided set of keys.
      Parameters:
      keys - set of keys to map to Boolean.TRUE
  • Method Details