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