public enum Driver extends Enum<Driver>
Alternatively, a parser can be called token by token when the need to stop parsing after a token has been managed
| Modifier and Type | Method and Description |
|---|---|
String |
skeleton() |
static Driver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Driver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Driver PARSER
public static final Driver SCANNER
public static Driver[] values()
for (Driver c : Driver.values()) System.out.println(c);
public static Driver 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 nullpublic String skeleton()
Copyright © 2017. All rights reserved.