protected static enum ClassReader.AttributeKind extends Enum<ClassReader.AttributeKind>
Modifier and Type | Method and Description |
---|---|
static ClassReader.AttributeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassReader.AttributeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassReader.AttributeKind CLASS
public static final ClassReader.AttributeKind MEMBER
public static ClassReader.AttributeKind[] values()
for (ClassReader.AttributeKind c : ClassReader.AttributeKind.values()) System.out.println(c);
public static ClassReader.AttributeKind 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 © 2017 earcam. All rights reserved.