Module org.tquadrat.foundation.util
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"
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe map that holds the references from the name to the value.The map that holds the references from the value to the name. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal void
Adds an entry to this entity map.
If the value is negative, only the name to value relation will be stored.list()
Returns the entities.name
(int value) Returns the name of the entity identified by the specified value.Returns the value of the entity identified by the specified name.
-
Field Details
-
m_NameToValue
The map that holds the references from the name to the value. -
m_ValueToName
The map that holds the references from the value to the name.
-
-
Constructor Details
-
PrimitiveEntityMap
public PrimitiveEntityMap()Creates a new primitive entity map.
-
-
Method Details
-
add
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 interfaceEntities.EntityMap
- Parameters:
name
- The entity name.value
- The entity value (the Unicode code).
-
list
Returns the entities.- Specified by:
list
in interfaceEntities.EntityMap
- Returns:
- The entities.
-
name
Returns the name of the entity identified by the specified value.- Specified by:
name
in interfaceEntities.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
Returns the value of the entity identified by the specified name.- Specified by:
value
in interfaceEntities.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.
-