Enum Class EditorKind

java.lang.Object
java.lang.Enum<EditorKind>
ch.so.agi.hop.commons.ui.EditorKind
All Implemented Interfaces:
Serializable, Comparable<EditorKind>, Constable

public enum EditorKind extends Enum<EditorKind>
How a configured string is entered; field mode always uses the same field editor.
  • Enum Constant Details

    • TEXT

      public static final EditorKind TEXT
    • FILE_OPEN

      public static final EditorKind FILE_OPEN
    • FILE_SAVE

      public static final EditorKind FILE_SAVE
    • DIRECTORY

      public static final EditorKind DIRECTORY
  • Method Details

    • values

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