Enum Class Vendor

java.lang.Object
java.lang.Enum<Vendor>
com.google.common.css.Vendor
All Implemented Interfaces:
Serializable, Comparable<Vendor>, Constable

public enum Vendor extends Enum<Vendor>
A browser vendor that provides non-standard CSS properties that can be identified by a special prefix.
  • Enum Constant Details

    • WEBKIT

      public static final Vendor WEBKIT
    • MOZILLA

      public static final Vendor MOZILLA
    • MICROSOFT

      public static final Vendor MICROSOFT
    • OPERA

      public static final Vendor OPERA
    • KONQUEROR

      public static final Vendor KONQUEROR
  • Method Details

    • values

      public static Vendor[] 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 Vendor 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
    • parseProperty

      @Nullable public static Vendor parseProperty(String propertyName)
    • getPrefix

      public String getPrefix()