public enum ProfileSort extends java.lang.Enum<ProfileSort>
| Enum Constant and Description |
|---|
CLASS_NAME
Sort by class name
|
REFERENCES
Sort by number of references to the object
|
TOTAL_BYTES
Sort by number of bytes used by the object and any children
|
UNIQUE_OBJECTS
Sort by number of unique children
|
| Modifier and Type | Method and Description |
|---|---|
static ProfileSort |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProfileSort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileSort CLASS_NAME
public static final ProfileSort REFERENCES
public static final ProfileSort UNIQUE_OBJECTS
public static final ProfileSort TOTAL_BYTES
public static ProfileSort[] values()
for (ProfileSort c : ProfileSort.values()) System.out.println(c);
public static ProfileSort valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null