Enum Class Component

java.lang.Object
java.lang.Enum<Component>
com.almis.awe.builder.enumerates.Component
All Implemented Interfaces:
Serializable, Comparable<Component>, Constable

public enum Component extends Enum<Component>
Author:
dfuentes
  • Enum Constant Details

    • BUTTON_CHECKBOX

      public static final Component BUTTON_CHECKBOX
    • BUTTON_RADIO

      public static final Component BUTTON_RADIO
    • CHECKBOX

      public static final Component CHECKBOX
    • COLOR

      public static final Component COLOR
    • DATE

      public static final Component DATE
    • FILTERED_CALENDAR

      public static final Component FILTERED_CALENDAR
    • HIDDEN

      public static final Component HIDDEN
    • MARKDOWN_EDITOR

      public static final Component MARKDOWN_EDITOR
    • NUMERIC

      public static final Component NUMERIC
    • PASSWORD

      public static final Component PASSWORD
    • PROGRESS

      public static final Component PROGRESS
    • ICON

      public static final Component ICON
    • IMAGE

      public static final Component IMAGE
    • RADIO

      public static final Component RADIO
    • SELECT

      public static final Component SELECT
    • SELECT_MULTIPLE

      public static final Component SELECT_MULTIPLE
    • SUGGEST

      public static final Component SUGGEST
    • SUGGEST_MULTIPLE

      public static final Component SUGGEST_MULTIPLE
    • TEXT

      public static final Component TEXT
    • TEXT_VIEW

      public static final Component TEXT_VIEW
    • TEXTAREA

      public static final Component TEXTAREA
    • TIME

      public static final Component TIME
    • UPLOADER

      public static final Component UPLOADER
  • Method Details

    • values

      public static Component[] 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 Component 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
    • equalsStr

      public boolean equalsStr(String value)
      Equals method
      Parameters:
      value -
      Returns:
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Component>