Enum CssAttributeSelectorNode.MatchType
- java.lang.Object
-
- java.lang.Enum<CssAttributeSelectorNode.MatchType>
-
- com.google.common.css.compiler.ast.CssAttributeSelectorNode.MatchType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CssAttributeSelectorNode.MatchType>
- Enclosing class:
- CssAttributeSelectorNode
public static enum CssAttributeSelectorNode.MatchType extends java.lang.Enum<CssAttributeSelectorNode.MatchType>
Determines how the given value has to match the value of the attribute so that the attribute is selected.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSymbol()static CssAttributeSelectorNode.MatchTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CssAttributeSelectorNode.MatchType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final CssAttributeSelectorNode.MatchType ANY
-
EXACT
public static final CssAttributeSelectorNode.MatchType EXACT
-
ONE_WORD
public static final CssAttributeSelectorNode.MatchType ONE_WORD
-
EXACT_OR_DASH
public static final CssAttributeSelectorNode.MatchType EXACT_OR_DASH
-
PREFIX
public static final CssAttributeSelectorNode.MatchType PREFIX
-
SUFFIX
public static final CssAttributeSelectorNode.MatchType SUFFIX
-
CONTAINS
public static final CssAttributeSelectorNode.MatchType CONTAINS
-
-
Method Detail
-
values
public static CssAttributeSelectorNode.MatchType[] 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 (CssAttributeSelectorNode.MatchType c : CssAttributeSelectorNode.MatchType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CssAttributeSelectorNode.MatchType 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 namejava.lang.NullPointerException- if the argument is null
-
getSymbol
public java.lang.String getSymbol()
-
-