Enum TagNames

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TagNames>, java.lang.constant.Constable

    public enum TagNames
    extends java.lang.Enum<TagNames>
    The enum Tag names.
    Since:
    1.0.0
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      A
      A tag names.
      BUTTON
      Button tag names.
      DIV
      Div tag names.
      H1
      H 1 tag names.
      H3
      H 3 tag names.
      IMG
      Img tag names.
      INPUT
      Input tag names.
      IO
      Io tag names.
      LABEL
      Label tag names.
      SELECT
      Select tag names.
      SPAN
      Span tag names.
      TABLE
      Table tag names.
      TD
      Td tag names.
      TEXTAREA
      Textarea tag names.
      TH
      Th tag names.
      WEBELEMENT
      Webelement tag names.
    • Method Summary

      Modifier and Type Method Description
      static TagNames valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static TagNames[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • BUTTON

        public static final TagNames BUTTON
        Button tag names.
      • INPUT

        public static final TagNames INPUT
        Input tag names.
      • A

        public static final TagNames A
        A tag names.
      • SELECT

        public static final TagNames SELECT
        Select tag names.
      • TABLE

        public static final TagNames TABLE
        Table tag names.
      • SPAN

        public static final TagNames SPAN
        Span tag names.
      • IO

        public static final TagNames IO
        Io tag names.
      • LABEL

        public static final TagNames LABEL
        Label tag names.
      • WEBELEMENT

        public static final TagNames WEBELEMENT
        Webelement tag names.
      • DIV

        public static final TagNames DIV
        Div tag names.
      • H1

        public static final TagNames H1
        H 1 tag names.
      • TH

        public static final TagNames TH
        Th tag names.
      • IMG

        public static final TagNames IMG
        Img tag names.
      • TEXTAREA

        public static final TagNames TEXTAREA
        Textarea tag names.
      • H3

        public static final TagNames H3
        H 3 tag names.
      • TD

        public static final TagNames TD
        Td tag names.
    • Method Detail

      • values

        public static TagNames[] values()
        Returns an array containing the constants of this enum type, in the order they are declared.
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TagNames valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null