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

public static enum TraceRmiLaunchOffer.RelPrompt extends Enum<TraceRmiLaunchOffer.RelPrompt>
When programmatically customizing launch configuration, describes callback timing relative to prompting the user.
  • Enum Constant Details

    • NONE

      public static final TraceRmiLaunchOffer.RelPrompt NONE
      The user is not prompted for parameters. This will be the only callback.
    • BEFORE

      public static final TraceRmiLaunchOffer.RelPrompt 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

      public static final TraceRmiLaunchOffer.RelPrompt 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

      public static TraceRmiLaunchOffer.RelPrompt[] 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

      public static TraceRmiLaunchOffer.RelPrompt valueOf(String name)
      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 name
      NullPointerException - if the argument is null