public static enum CSSValueImpl.CSSValueType extends Enum<CSSValueImpl.CSSValueType>
| Enum Constant and Description |
|---|
CSS_INHERIT
CSS_INHERIT.
|
CSS_PRIMITIVE_VALUE
CSS_PRIMITIVE_VALUE.
|
CSS_VALUE_LIST
CSS_VALUE_LIST.
|
| Modifier and Type | Method and Description |
|---|---|
static CSSValueImpl.CSSValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSSValueImpl.CSSValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSSValueImpl.CSSValueType CSS_VALUE_LIST
public static final CSSValueImpl.CSSValueType CSS_INHERIT
public static final CSSValueImpl.CSSValueType CSS_PRIMITIVE_VALUE
public static CSSValueImpl.CSSValueType[] values()
for (CSSValueImpl.CSSValueType c : CSSValueImpl.CSSValueType.values()) System.out.println(c);
public static CSSValueImpl.CSSValueType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024 HtmlUnit. All rights reserved.