@Title(value="Identifiers") public enum IdentifierConf extends Enum<IdentifierConf>
| Enum Constant and Description |
|---|
HOSTNAME |
MSGID_GENERATOR |
| Modifier and Type | Method and Description |
|---|---|
static IdentifierConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentifierConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.identifier.hostname") @DefaultValue(value="") public static final IdentifierConf HOSTNAME
@Path(value="oxalis.identifier.msgidgen") @DefaultValue(value="default") public static final IdentifierConf MSGID_GENERATOR
public static IdentifierConf[] values()
for (IdentifierConf c : IdentifierConf.values()) System.out.println(c);
public static IdentifierConf 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.