public static enum ClassFileDumper.InnerClassDumpType extends Enum<ClassFileDumper.InnerClassDumpType>
Enum Constant and Description |
---|
INLINE_CLASS |
INNER_CLASS |
NOT |
Modifier and Type | Method and Description |
---|---|
boolean |
isInnerClass() |
static ClassFileDumper.InnerClassDumpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassFileDumper.InnerClassDumpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassFileDumper.InnerClassDumpType NOT
public static final ClassFileDumper.InnerClassDumpType INNER_CLASS
public static final ClassFileDumper.InnerClassDumpType INLINE_CLASS
public static ClassFileDumper.InnerClassDumpType[] values()
for (ClassFileDumper.InnerClassDumpType c : ClassFileDumper.InnerClassDumpType.values()) System.out.println(c);
public static ClassFileDumper.InnerClassDumpType 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 nullpublic boolean isInnerClass()
Copyright © 2011-2021. All Rights Reserved.