Class AbstractLongListLabel
java.lang.Object
it.unimi.dsi.big.webgraph.labelling.AbstractLabel
it.unimi.dsi.big.webgraph.labelling.AbstractLongListLabel
- All Implemented Interfaces:
Label
,FlyweightPrototype<Label>
- Direct Known Subclasses:
FixedWidthLongListLabel
An abstract (single-attribute) list-of-longs label.
This class provides basic methods for a label holding a list of longs. Concrete implementations may impose further requirements on the long.
Implementing subclasses must provide constructors, Label.copy()
,
Label.fromBitStream(it.unimi.dsi.io.InputBitStream, int)
,
Label.toBitStream(it.unimi.dsi.io.OutputBitStream, int)
and possibly override
toString()
.
-
Field Summary
Modifier and TypeFieldDescriptionprotected final String
The key of the attribute represented by this label.long[]
The values of the attribute represented by this label.Fields inherited from interface it.unimi.dsi.big.webgraph.labelling.Label
EMPTY_LABEL_ARRAY, EMPTY_LABEL_BIG_ARRAY
-
Constructor Summary
ConstructorDescriptionAbstractLongListLabel
(String key, long[] value) Creates an long label with given key and value. -
Method Summary
Modifier and TypeMethodDescriptionString[]
All attribute keys (in arbitrary order).Class<?>[]
The types of all attributes in the same order as they are returned byLabel.attributeKeys()
.boolean
get()
The value associated to the well-known attribute.The value associated to the attribute with given key.int
hashCode()
toString()
Returns the well-known attribute key.Methods inherited from class it.unimi.dsi.big.webgraph.labelling.AbstractLabel
getBoolean, getBoolean, getByte, getByte, getChar, getChar, getDouble, getDouble, getFloat, getFloat, getInt, getInt, getLong, getLong, getShort, getShort
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface it.unimi.dsi.big.webgraph.labelling.Label
copy, fixedWidth, fromBitStream, getBoolean, getBoolean, getByte, getByte, getChar, getChar, getDouble, getDouble, getFloat, getFloat, getInt, getInt, getLong, getLong, getShort, getShort, toBitStream, toSpec
-
Field Details
-
key
The key of the attribute represented by this label. -
value
public long[] valueThe values of the attribute represented by this label.
-
-
Constructor Details
-
AbstractLongListLabel
Creates an long label with given key and value.- Parameters:
key
- the (only) key of this label.value
- the value of this label.
-
-
Method Details
-
wellKnownAttributeKey
Description copied from interface:Label
Returns the well-known attribute key.- Specified by:
wellKnownAttributeKey
in interfaceLabel
- Returns:
- the well-known attribute key.
-
attributeKeys
Description copied from interface:Label
All attribute keys (in arbitrary order).- Specified by:
attributeKeys
in interfaceLabel
- Returns:
- the keys of all attributes.
-
attributeTypes
Description copied from interface:Label
The types of all attributes in the same order as they are returned byLabel.attributeKeys()
.- Specified by:
attributeTypes
in interfaceLabel
- Returns:
- the type of all attributes.
-
get
Description copied from interface:Label
The value associated to the attribute with given key. -
get
Description copied from interface:Label
The value associated to the well-known attribute. -
toString
-
equals
-
hashCode
public int hashCode()
-