@Beta public final class LeafsetEntryInterner extends Object
LeafSetEntryNode
s which have low cardinality -- e.g. those which hold
boolean or enumeration values. Instances containing attributes are not interned.
Such objects have cardinality which is capped at the product of QNAMES * TYPE_CARDINALITY, where QNAMES is the total number of different QNames where the type is used and TYPE_CARDINALITY is the number of possible values for the type. Boolean has cardinality of 2, enumerations have cardinality equal to the number of enum statements.
The theory here is that we tend to have a large number (100K+) of entries in a few places, which could end up hogging the heap retained via the DataTree with duplicate objects (same QName, same value, different object). Using this utility, such objects will end up reusing the same object, preventing this overhead.
Modifier and Type | Method and Description |
---|---|
static @Nullable LeafsetEntryInterner |
forSchema(@Nullable LeafListSchemaNode schema)
Return a
LeafsetEntryInterner for a particular schema. |
<T extends LeafSetEntryNode<?>> |
intern(T sample) |
public <T extends LeafSetEntryNode<?>> T intern(T sample)
public static @Nullable LeafsetEntryInterner forSchema(@Nullable LeafListSchemaNode schema)
LeafsetEntryInterner
for a particular schema. Interner instances must be used only for leafset
entries for that particular schema, otherwise they may produce unexpected results.schema
- Schema of the parent leaf setCopyright © 2019 OpenDaylight. All rights reserved.