public enum AdministrationOperations extends Enum<AdministrationOperations>
Enum Constant and Description |
---|
stats |
statsreset |
update |
usage |
Modifier and Type | Field and Description |
---|---|
String |
description |
boolean |
ready |
String |
value |
Modifier and Type | Method and Description |
---|---|
static AdministrationOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdministrationOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdministrationOperations update
public static final AdministrationOperations usage
public static final AdministrationOperations stats
public static final AdministrationOperations statsreset
public String value
public String description
public boolean ready
public static AdministrationOperations[] values()
for (AdministrationOperations c : AdministrationOperations.values()) System.out.println(c);
public static AdministrationOperations 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 © 2013, Oracle and/or its affiliates. All rights reserved.