- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<K,V>
-
- edu.uiuc.ncsa.security.core.state.STable<K,V>
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<K,V>
- Direct Known Subclasses:
EnvTable
public abstract class STable<K extends SKey,V extends SThing> extends HashMap<K,V> implements Cloneable, Serializable
A symbol table. This should hold variables, functions or whatever that needs to have scope managed.. Sequences of these are managed bySStack
.Created by Jeff Gaynor
on 11/7/21 at 5:14 AM- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description STable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UUID
getID()
V
put(SThing value)
Should add theSThing
based on itsSThing.getName()
as the key.String
toString()
-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode
-
-