Enum Class DisplayMethod

java.lang.Object
java.lang.Enum<DisplayMethod>
nablarch.common.web.tag.DisplayMethod
All Implemented Interfaces:
Serializable, Comparable<DisplayMethod>, Constable

public enum DisplayMethod extends Enum<DisplayMethod>
フォームのサブミットを行うタグを表示制御する場合の表示方法を表す列挙型
  • Enum Constant Details

    • NODISPLAY

      public static final DisplayMethod NODISPLAY
      非表示を表す。
    • DISABLED

      public static final DisplayMethod DISABLED
      非活性を表す。
    • NORMAL

      public static final DisplayMethod NORMAL
      通常表示を表す。(非表示も非活性も行わない)
  • Method Details

    • values

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