public static enum DumpEntity.DumpType extends Enum<DumpEntity.DumpType>
| Enum Constant and Description |
|---|
compound
We're dumping a compound type
|
def
We're dumping the entire object
|
reference
We're dumping enough to refer to an entity
|
| Modifier and Type | Method and Description |
|---|---|
static DumpEntity.DumpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DumpEntity.DumpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DumpEntity.DumpType def
public static final DumpEntity.DumpType compound
public static final DumpEntity.DumpType reference
public static DumpEntity.DumpType[] values()
for (DumpEntity.DumpType c : DumpEntity.DumpType.values()) System.out.println(c);
public static DumpEntity.DumpType 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 © 2018 Bedework. All rights reserved.