Enum ControlAction

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      START
      Indicates the Sling application should be started and a listener should be installed to accept control commands.
      STATUS
      Indicates to connect to a running Sling application having installed a listener and ask that application about its state.
      STOP
      Indicates to connect to a running Sling application having installed a listener and send that application the command to shutdown.
      THREADS
      Indicates to connect to a running Sling application having installed a listener and ask for a thread dump.
    • Enum Constant Detail

      • START

        public static final ControlAction START
        Indicates the Sling application should be started and a listener should be installed to accept control commands.
      • STOP

        public static final ControlAction STOP
        Indicates to connect to a running Sling application having installed a listener and send that application the command to shutdown.
      • STATUS

        public static final ControlAction STATUS
        Indicates to connect to a running Sling application having installed a listener and ask that application about its state.
      • THREADS

        public static final ControlAction THREADS
        Indicates to connect to a running Sling application having installed a listener and ask for a thread dump.
    • Method Detail

      • values

        public static ControlAction[] 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 (ControlAction c : ControlAction.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ControlAction valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null