public static enum SparseBitSet.Statistics extends Enum<SparseBitSet.Statistics>
ints, except for the loadFactor and
Average_chain_length values, which are floats.
An array of Strings may be obtained containing a
representation of each of these values. An element of such an array, say,
values, may be accessed, for example, by:
values[SparseBitSet.statistics.Buckets_available.ordinal()]SparseBitSet.statistics(String[])| Enum Constant and Description |
|---|
Cardinality
The cardinality of the bit set, as give by the cardinality() method.
|
Compaction_count_value
Is the value that determines how the toString() conversion is
performed.
|
Length
The length of the bit set, as give by the length() method.
|
Level2_area_length
The length of the level2 areas.
|
Level2_areas
The number of level2 areas.
|
Level3_block_length
The length of the level3 blocks.
|
Level3_blocks
The total number of level3 blocks in use.
|
Set_array_length
The length of the bit set array.
|
Set_array_max_length
The maximum permitted length of the bit set array.
|
Size
The size of the bit set, as give by the size() method.
|
Total_words
The total number of non-zero 64-bits "words" being used to hold the
representation of the bit set.
|
| Modifier and Type | Method and Description |
|---|---|
static SparseBitSet.Statistics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SparseBitSet.Statistics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SparseBitSet.Statistics Size
public static final SparseBitSet.Statistics Length
public static final SparseBitSet.Statistics Cardinality
public static final SparseBitSet.Statistics Total_words
public static final SparseBitSet.Statistics Set_array_length
public static final SparseBitSet.Statistics Set_array_max_length
public static final SparseBitSet.Statistics Level2_areas
public static final SparseBitSet.Statistics Level2_area_length
public static final SparseBitSet.Statistics Level3_blocks
public static final SparseBitSet.Statistics Level3_block_length
public static final SparseBitSet.Statistics Compaction_count_value
SparseBitSet.toStringCompaction(int)public static SparseBitSet.Statistics[] values()
for (SparseBitSet.Statistics c : SparseBitSet.Statistics.values()) System.out.println(c);
public static SparseBitSet.Statistics valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014 Zaxxer.com. All rights reserved.