public static enum GraphBuilderConfiguration.BytecodeExceptionMode extends Enum<GraphBuilderConfiguration.BytecodeExceptionMode>
Enum Constant and Description |
---|
CheckAll
This mode always explicitly checks for exceptions.
|
ExplicitOnly
This mode omits exception edges at invokes, but not for implicit null checks or bounds
checks.
|
OmitAll
This mode omits all explicit exception edges.
|
Profile
This mode uses profiling information to decide whether to use explicit exception edges.
|
Modifier and Type | Method and Description |
---|---|
static GraphBuilderConfiguration.BytecodeExceptionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphBuilderConfiguration.BytecodeExceptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphBuilderConfiguration.BytecodeExceptionMode CheckAll
public static final GraphBuilderConfiguration.BytecodeExceptionMode OmitAll
public static final GraphBuilderConfiguration.BytecodeExceptionMode ExplicitOnly
public static final GraphBuilderConfiguration.BytecodeExceptionMode Profile
public static GraphBuilderConfiguration.BytecodeExceptionMode[] values()
public static GraphBuilderConfiguration.BytecodeExceptionMode 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 null