public static enum ByteCodeAnalyzer.Mode extends Enum<ByteCodeAnalyzer.Mode>
Enum Constant and Description |
---|
ALL |
CONSTANTS |
FIELDS |
INTERFACES |
METHODS |
Modifier and Type | Method and Description |
---|---|
static ByteCodeAnalyzer.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ByteCodeAnalyzer.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ByteCodeAnalyzer.Mode CONSTANTS
public static final ByteCodeAnalyzer.Mode INTERFACES
public static final ByteCodeAnalyzer.Mode FIELDS
public static final ByteCodeAnalyzer.Mode METHODS
public static final ByteCodeAnalyzer.Mode ALL
public static ByteCodeAnalyzer.Mode[] values()
for (ByteCodeAnalyzer.Mode c : ByteCodeAnalyzer.Mode.values()) System.out.println(c);
public static ByteCodeAnalyzer.Mode 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 © 2014–2022 ImageJ. All rights reserved.