Enum Class EditOption

java.lang.Object
java.lang.Enum<EditOption>
eu.webtoolkit.jwt.EditOption
All Implemented Interfaces:
Serializable, Comparable<EditOption>, Constable

public enum EditOption extends Enum<EditOption>
Enumeration that specifies editing options.
  • Enum Constant Details

    • SingleEditor

      public static final EditOption SingleEditor
      Never show more than one active editor.
    • MultipleEditors

      public static final EditOption MultipleEditors
      Allow multiple editors at the same time.
    • SaveWhenClosed

      public static final EditOption SaveWhenClosed
      Always save the current edit value when closing.
    • LeaveEditorsOpen

      public static final EditOption LeaveEditorsOpen
      Editors can only be closed using closeEditor()
  • Method Details

    • values

      public static EditOption[] 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 EditOption 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
    • getValue

      public int getValue()
      Returns the numerical representation of this enum.