public static enum IndexManager.Index extends Enum<IndexManager.Index>
Enum Constant and Description |
---|
A2SIZE
Array to size: array (or non-default sized object) id to size (as an encoded int)
|
DOMINATED
Dominated: object id to N dominated object ids
|
DOMINATOR
Dominator of: object id to the id of its dominator
|
I2RETAINED
Retained size cache.
|
IDENTIFIER
Index to address: object id to address (as a long)
|
INBOUND
Inbounds: object id to N outbound object ids
|
O2CLASS
Object to class: object id to 1 class id
|
O2RETAINED
Object to retained size: object in dominator tree to retained size (as a long)
|
OUTBOUND
Outbounds: object id to N inbound object ids
|
Modifier and Type | Method and Description |
---|---|
File |
getFile(String prefix) |
static IndexManager.Index |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexManager.Index[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexManager.Index INBOUND
public static final IndexManager.Index OUTBOUND
public static final IndexManager.Index O2CLASS
public static final IndexManager.Index IDENTIFIER
public static final IndexManager.Index A2SIZE
public static final IndexManager.Index DOMINATED
public static final IndexManager.Index O2RETAINED
public static final IndexManager.Index DOMINATOR
public static final IndexManager.Index I2RETAINED
public String filename
public static IndexManager.Index[] values()
for (IndexManager.Index c : IndexManager.Index.values()) System.out.println(c);
public static IndexManager.Index 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 null