Enum Waiting.Element

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Waiting.Element>
    Enclosing class:
    Waiting

    protected static enum Waiting.Element
    extends java.lang.Enum<Waiting.Element>
    • Enum Constant Detail

      • PRESENCE_OF_ELEMENT_LOCATED

        public static final Waiting.Element PRESENCE_OF_ELEMENT_LOCATED
      • ELEMENT_TO_BE_CLICKABLE

        public static final Waiting.Element ELEMENT_TO_BE_CLICKABLE
      • VISIBILITY_OF_ELEMENT_LOCATED

        public static final Waiting.Element VISIBILITY_OF_ELEMENT_LOCATED
    • Method Detail

      • values

        public static Waiting.Element[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Waiting.Element c : Waiting.Element.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Waiting.Element 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