public static enum ParserException.Type extends Enum<ParserException.Type>
Enum Constant and Description |
---|
Invalid |
NotSvg |
NotWellFormed |
Modifier and Type | Method and Description |
---|---|
static ParserException.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParserException.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserException.Type NotWellFormed
public static final ParserException.Type NotSvg
public static final ParserException.Type Invalid
public static ParserException.Type[] values()
for (ParserException.Type c : ParserException.Type.values()) System.out.println(c);
public static ParserException.Type 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 © 2018. All Rights Reserved.