protected static enum CSSException.ErrorCode extends Enum<CSSException.ErrorCode>
| Enum Constant and Description |
|---|
NOT_SUPPORTED_ERR
Not supported.
|
SYNTAX_ERR
Syntax error.
|
UNSPECIFIED_ERR
Unspecified.
|
| Modifier and Type | Method and Description |
|---|---|
static CSSException.ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSSException.ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSSException.ErrorCode UNSPECIFIED_ERR
public static final CSSException.ErrorCode NOT_SUPPORTED_ERR
public static final CSSException.ErrorCode SYNTAX_ERR
public static CSSException.ErrorCode[] values()
for (CSSException.ErrorCode c : CSSException.ErrorCode.values()) System.out.println(c);
public static CSSException.ErrorCode 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 © 2022. All rights reserved.