Enum Class MakeMap.Type

java.lang.Object
java.lang.Enum<MakeMap.Type>
com.singularsys.jep.misc.dictionary.MakeMap.Type
All Implemented Interfaces:
Serializable, Comparable<MakeMap.Type>, Constable
Enclosing class:
MakeMap

public static enum MakeMap.Type extends Enum<MakeMap.Type>
Configuration type.
  • Enum Constant Details

    • HashMap

      public static final MakeMap.Type HashMap
      An unordered map.
    • LinkedMap

      public static final MakeMap.Type LinkedMap
      A map ordered by insertion order
    • TreeMap

      public static final MakeMap.Type TreeMap
      A map with sorted keys.
    • Supplier

      public static final MakeMap.Type Supplier
      A map created by a custom supplier, via the MakeMap(Supplier) constructor.
  • Method Details

    • values

      public static MakeMap.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MakeMap.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null