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