Package ghidra.debug.api.tracermi
Enum Class TraceRmiLaunchOffer.RelPrompt
java.lang.Object
java.lang.Enum<TraceRmiLaunchOffer.RelPrompt>
ghidra.debug.api.tracermi.TraceRmiLaunchOffer.RelPrompt
- All Implemented Interfaces:
Serializable,Comparable<TraceRmiLaunchOffer.RelPrompt>,Constable
- Enclosing interface:
TraceRmiLaunchOffer
When programmatically customizing launch configuration, describes callback timing relative to
prompting the user.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TraceRmiLaunchOffer.RelPrompt[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
The user is not prompted for parameters. This will be the only callback. -
BEFORE
The user will be prompted. This callback can pre-populate suggested parameters. Another callback will be issued if the user does not cancel. -
AFTER
The user has confirmed the parameters. This callback can validate or override the users parameters. Overriding the user is discouraged. This is the final callback.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-