@Title(value="Header") public enum HeaderConf extends Enum<HeaderConf>
| Enum Constant and Description |
|---|
PARSER |
| Modifier and Type | Method and Description |
|---|---|
static HeaderConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeaderConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.header.parser") @DefaultValue(value="sbdh") public static final HeaderConf PARSER
public static HeaderConf[] values()
for (HeaderConf c : HeaderConf.values()) System.out.println(c);
public static HeaderConf 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 © 2021 NorStella. All rights reserved.