Class Entities.PrimitiveEntityMap

java.lang.Object
org.tquadrat.foundation.util.internal.Entities.PrimitiveEntityMap
All Implemented Interfaces:
Entities.EntityMap
Enclosing class:
Entities

@ClassVersion(sourceVersion="$Id: Entities.java 1060 2023-09-24 19:21:40Z tquadrat $") private static class Entities.PrimitiveEntityMap extends Object implements Entities.EntityMap
A simple implementation for the interface Entities.EntityMap.
Authors:
Alexander Day Chaffee (alex@purpletech.com), Gary Gregory (ggregory@seagullsw.com), Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Entities.java 1060 2023-09-24 19:21:40Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.internal.Entities.PrimitiveEntityMap"

UML Diagram for "org.tquadrat.foundation.util.internal.Entities.PrimitiveEntityMap"

UML Diagram for "org.tquadrat.foundation.util.internal.Entities.PrimitiveEntityMap"
  • Field Details

  • Constructor Details

  • Method Details

    • add

      public final void add(String name, Integer value)
      Adds an entry to this entity map.

      If the value is negative, only the name to value relation will be stored.
      Specified by:
      add in interface Entities.EntityMap
      Parameters:
      name - The entity name.
      value - The entity value (the Unicode code).
    • list

      public final Stream<String> list()
      Returns the entities.
      Specified by:
      list in interface Entities.EntityMap
      Returns:
      The entities.
    • name

      public final Optional<String> name(int value)
      Returns the name of the entity identified by the specified value.
      Specified by:
      name in interface Entities.EntityMap
      Parameters:
      value - The value to locate.
      Returns:
      An instance of Optional that holds the entity name that is associated with the specified value.
    • value

      public final Optional<Integer> value(String name)
      Returns the value of the entity identified by the specified name.
      Specified by:
      value in interface Entities.EntityMap
      Parameters:
      name - The name of the entity to locate
      Returns:
      An instance of Optional that holds the entity value associated with the specified name.