Enum Browsers

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

    public enum Browsers
    extends java.lang.Enum<Browsers>
    An enum representing all the browsers that are usuable with Fast.
    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
      CHROME
      An enum constant for representing using the Chrome browser.
      EDGE
      An enum constant for representing using the Edge browser.
      FIREFOX
      An enum constant for representing using the Firefox browser.
      IEXPLORER
      An enum constant for representing using the Internet Explorer browser.
      INTERNET_EXPLORER
      An enum constant for representing using the Internet Explorer browser.
      SAFARI
      An enum constant for representing using the Safari browser.
    • Method Summary

      Modifier and Type Method Description
      static Browsers valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Browsers[] 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

      • CHROME

        public static final Browsers CHROME
        An enum constant for representing using the Chrome browser.
        Since:
        1.0.0
      • EDGE

        public static final Browsers EDGE
        An enum constant for representing using the Edge browser.
        Since:
        1.0.0
      • FIREFOX

        public static final Browsers FIREFOX
        An enum constant for representing using the Firefox browser.
        Since:
        1.0.0
      • IEXPLORER

        public static final Browsers IEXPLORER
        An enum constant for representing using the Internet Explorer browser.
        Since:
        1.0.0
      • INTERNET_EXPLORER

        public static final Browsers INTERNET_EXPLORER
        An enum constant for representing using the Internet Explorer browser.
        Since:
        1.0.0
      • SAFARI

        public static final Browsers SAFARI
        An enum constant for representing using the Safari browser.
        Since:
        1.0.0
    • Method Detail

      • values

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