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