Enum Class ExecRequest.Options

java.lang.Object
java.lang.Enum<ExecRequest.Options>
net.bluemind.node.shared.ExecRequest.Options
All Implemented Interfaces:
Serializable, Comparable<ExecRequest.Options>, Constable
Enclosing class:
ExecRequest

public static enum ExecRequest.Options extends Enum<ExecRequest.Options>
  • Enum Constant Details

    • DISCARD_OUTPUT

      public static final ExecRequest.Options DISCARD_OUTPUT
      Process output will be dropped by node server
    • FAIL_IF_GROUP_EXISTS

      public static final ExecRequest.Options FAIL_IF_GROUP_EXISTS
      Refuse the execution if a process from the same group is already running
    • FAIL_IF_EXISTS

      public static final ExecRequest.Options FAIL_IF_EXISTS
      Refuse the execution if a process with the same group/name exists
    • REPLACE_IF_EXISTS

      public static final ExecRequest.Options REPLACE_IF_EXISTS
      Replace the process if one with the same group/name exists
  • Method Details

    • values

      public static ExecRequest.Options[] 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 ExecRequest.Options 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