public static enum ClassFileInfo.NestingType extends Enum<ClassFileInfo.NestingType>
| Enum Constant and Description |
|---|
NESTED_ANONYMOUS |
NESTED_INNER |
NESTED_LOCAL |
NESTED_STATIC |
TOP_LEVEL |
| Modifier and Type | Method and Description |
|---|---|
static ClassFileInfo.NestingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassFileInfo.NestingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassFileInfo.NestingType TOP_LEVEL
public static final ClassFileInfo.NestingType NESTED_INNER
public static final ClassFileInfo.NestingType NESTED_LOCAL
public static final ClassFileInfo.NestingType NESTED_ANONYMOUS
public static final ClassFileInfo.NestingType NESTED_STATIC
public static ClassFileInfo.NestingType[] values()
for (ClassFileInfo.NestingType c : ClassFileInfo.NestingType.values()) System.out.println(c);
public static ClassFileInfo.NestingType 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 © 2008–2019. All rights reserved.