Enum CssComponentNode.PrefixStyle
- java.lang.Object
-
- java.lang.Enum<CssComponentNode.PrefixStyle>
-
- com.google.common.css.compiler.ast.CssComponentNode.PrefixStyle
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CssComponentNode.PrefixStyle>
- Enclosing class:
- CssComponentNode
public static enum CssComponentNode.PrefixStyle extends java.lang.Enum<CssComponentNode.PrefixStyle>
Indicates how we want to construct the prefix strings for this component.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CASE_CONVERTMeans case-convert the name before use.LITERALMeans use the name as-is without any transformation.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CssComponentNode.PrefixStylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CssComponentNode.PrefixStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LITERAL
public static final CssComponentNode.PrefixStyle LITERAL
Means use the name as-is without any transformation.
-
CASE_CONVERT
public static final CssComponentNode.PrefixStyle CASE_CONVERT
Means case-convert the name before use.
-
-
Method Detail
-
values
public static CssComponentNode.PrefixStyle[] 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 (CssComponentNode.PrefixStyle c : CssComponentNode.PrefixStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CssComponentNode.PrefixStyle 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
-
-