Package org.adoptopenjdk.jitwatch.loader
Enum BytecodeLoader.BytecodeSection
- java.lang.Object
-
- java.lang.Enum<BytecodeLoader.BytecodeSection>
-
- org.adoptopenjdk.jitwatch.loader.BytecodeLoader.BytecodeSection
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BytecodeLoader.BytecodeSection>
- Enclosing class:
- BytecodeLoader
static enum BytecodeLoader.BytecodeSection extends java.lang.Enum<BytecodeLoader.BytecodeSection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODECONSTANT_POOLEXCEPTIONTABLEINNERCLASSESLINETABLELOCALVARIABLETABLENONERUNTIMEVISIBLEANNOTATIONSSTACKMAPTABLE
-
Constructor Summary
Constructors Modifier Constructor Description privateBytecodeSection()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BytecodeLoader.BytecodeSectionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BytecodeLoader.BytecodeSection[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final BytecodeLoader.BytecodeSection NONE
-
CONSTANT_POOL
public static final BytecodeLoader.BytecodeSection CONSTANT_POOL
-
CODE
public static final BytecodeLoader.BytecodeSection CODE
-
EXCEPTIONTABLE
public static final BytecodeLoader.BytecodeSection EXCEPTIONTABLE
-
LINETABLE
public static final BytecodeLoader.BytecodeSection LINETABLE
-
RUNTIMEVISIBLEANNOTATIONS
public static final BytecodeLoader.BytecodeSection RUNTIMEVISIBLEANNOTATIONS
-
LOCALVARIABLETABLE
public static final BytecodeLoader.BytecodeSection LOCALVARIABLETABLE
-
STACKMAPTABLE
public static final BytecodeLoader.BytecodeSection STACKMAPTABLE
-
INNERCLASSES
public static final BytecodeLoader.BytecodeSection INNERCLASSES
-
-
Method Detail
-
values
public static BytecodeLoader.BytecodeSection[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BytecodeLoader.BytecodeSection c : BytecodeLoader.BytecodeSection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BytecodeLoader.BytecodeSection valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-