Enum BCAnnotationType
- java.lang.Object
-
- java.lang.Enum<BCAnnotationType>
-
- org.adoptopenjdk.jitwatch.model.bytecode.BCAnnotationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BCAnnotationType>
public enum BCAnnotationType extends java.lang.Enum<BCAnnotationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRANCHELIMINATED_ALLOCATIONHOT_THROW_NOT_PREALLOCATEDHOT_THROW_PREALLOCATEDINLINE_FAILINLINE_SUCCESSINTRINSIC_USEDLOCK_COARSENLOCK_ELISIONUNCOMMON_TRAPVIRTUAL_CALL
-
Constructor Summary
Constructors Modifier Constructor Description privateBCAnnotationType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BCAnnotationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BCAnnotationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BRANCH
public static final BCAnnotationType BRANCH
-
INLINE_SUCCESS
public static final BCAnnotationType INLINE_SUCCESS
-
INLINE_FAIL
public static final BCAnnotationType INLINE_FAIL
-
ELIMINATED_ALLOCATION
public static final BCAnnotationType ELIMINATED_ALLOCATION
-
LOCK_ELISION
public static final BCAnnotationType LOCK_ELISION
-
LOCK_COARSEN
public static final BCAnnotationType LOCK_COARSEN
-
INTRINSIC_USED
public static final BCAnnotationType INTRINSIC_USED
-
UNCOMMON_TRAP
public static final BCAnnotationType UNCOMMON_TRAP
-
HOT_THROW_PREALLOCATED
public static final BCAnnotationType HOT_THROW_PREALLOCATED
-
HOT_THROW_NOT_PREALLOCATED
public static final BCAnnotationType HOT_THROW_NOT_PREALLOCATED
-
VIRTUAL_CALL
public static final BCAnnotationType VIRTUAL_CALL
-
-
Method Detail
-
values
public static BCAnnotationType[] 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 (BCAnnotationType c : BCAnnotationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BCAnnotationType 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
-
-