Package bio.singa.simulation.entities
Class EntityRegistry
- java.lang.Object
-
- bio.singa.simulation.entities.EntityRegistry
-
public class EntityRegistry extends Object
- Author:
- cl
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<ChemicalEntity>allWith(String... containedIdentifiers)static booleancontains(String referenceIdentifier)static ChemicalEntityget(String referenceIdentifier)static Collection<ChemicalEntity>getAll()static List<String>listEntities()static ChemicalEntitymatchExactly(String... containedIdentifiers)static voidput(ChemicalEntity entity)static voidput(String identifier, ChemicalEntity entity)static voidreinitialize()
-
-
-
Method Detail
-
reinitialize
public static void reinitialize()
-
put
public static void put(String identifier, ChemicalEntity entity)
-
put
public static void put(ChemicalEntity entity)
-
get
public static ChemicalEntity get(String referenceIdentifier)
-
contains
public static boolean contains(String referenceIdentifier)
-
matchExactly
public static ChemicalEntity matchExactly(String... containedIdentifiers)
-
allWith
public static List<ChemicalEntity> allWith(String... containedIdentifiers)
-
getAll
public static Collection<ChemicalEntity> getAll()
-
-