Package org.mozilla.javascript
Interface SlotMap
- All Superinterfaces:
Iterable<org.mozilla.javascript.ScriptableObject.Slot>
- All Known Implementing Classes:
EmbeddedSlotMap,HashSlotMap
A SlotMap is an interface to the main data structure that contains all the "Slots"
that back a ScriptableObject. It is the primary property map in Rhino. It is
Iterable but does not implement java.util.Map because that comes with a bunch
of overhead that we do not need.
This class generally has a bit of a strange interface, and its interactions with
ScriptableObject are complex. Many attempts to make this interface more elegant have
resulted in substantial performance regressions so we are doing the best that we can.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddSlot(org.mozilla.javascript.ScriptableObject.Slot newSlot) Insert a new slot to the map.org.mozilla.javascript.ScriptableObject.SlotReturn the Slot that matches EITHER "key" or "index".booleanisEmpty()Return whether the map is empty.org.mozilla.javascript.ScriptableObject.SlotThis is an optimization that is the same as get with an accessType of SLOT_QUERY.voidRemove the slot at either "key" or "index".intsize()Return the size of the map.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
size
int size()Return the size of the map. -
isEmpty
boolean isEmpty()Return whether the map is empty. -
get
org.mozilla.javascript.ScriptableObject.Slot get(Object key, int index, org.mozilla.javascript.ScriptableObject.SlotAccess accessType) Return the Slot that matches EITHER "key" or "index". (It will use "key" if it is not null, and otherwise "index". "accessType" is one of the constants defined in ScriptableObject. -
query
This is an optimization that is the same as get with an accessType of SLOT_QUERY. It should be used instead of SLOT_QUERY because it is more efficient. -
addSlot
void addSlot(org.mozilla.javascript.ScriptableObject.Slot newSlot) Insert a new slot to the map. Both "name" and "indexOrHash" must be populated. Note that ScriptableObject generally adds slots via the "get" method. -
remove
Remove the slot at either "key" or "index".
-