public enum SMParams extends Enum<SMParams>
| Enum Constant and Description |
|---|
LOG_BASE |
| Modifier and Type | Method and Description |
|---|---|
static SMParams |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SMParams[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMParams LOG_BASE
public static SMParams[] values()
for (SMParams c : SMParams.values()) System.out.println(c);
public static SMParams 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 © 2014. All rights reserved.