Enum Class InteractionMode

java.lang.Object
java.lang.Enum<InteractionMode>
org.springframework.shell.context.InteractionMode
All Implemented Interfaces:
Serializable, Comparable<InteractionMode>, Constable

public enum InteractionMode extends Enum<InteractionMode>
Enumeration for modes shell is operating.
  • Enum Constant Details

    • ALL

      public static final InteractionMode ALL
      All possible modes.
    • NONINTERACTIVE

      public static final InteractionMode NONINTERACTIVE
      Non-interactive mode which is expected to exit and doesn't have any kind of running mode to keep shell alive.
    • INTERACTIVE

      public static final InteractionMode INTERACTIVE
      Interactive mode which is expected to not exit and do have a running mode to keep shell alive.
  • Method Details

    • values

      public static InteractionMode[] 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 InteractionMode 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