public enum CactosUser extends Enum<CactosUser>
| Enum Constant and Description |
|---|
CACTOOPT |
CACTOSCALE |
CACTOSIM |
| Modifier and Type | Method and Description |
|---|---|
String |
getPassKey() |
String |
getUserKey() |
static CactosUser |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CactosUser[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CactosUser CACTOOPT
public static final CactosUser CACTOSCALE
public static final CactosUser CACTOSIM
public static CactosUser[] values()
for (CactosUser c : CactosUser.values()) System.out.println(c);
public static CactosUser 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 nullpublic String getUserKey()
public String getPassKey()