public static enum LogsProcessor.Action extends Enum<LogsProcessor.Action>
| Enum Constant and Description |
|---|
Logs |
NoAction |
NoLogsCode |
| Modifier and Type | Method and Description |
|---|---|
static LogsProcessor.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogsProcessor.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogsProcessor.Action NoAction
public static final LogsProcessor.Action Logs
public static final LogsProcessor.Action NoLogsCode
public static LogsProcessor.Action[] values()
for (LogsProcessor.Action c : LogsProcessor.Action.values()) System.out.println(c);
public static LogsProcessor.Action 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 © 2002-2012 CodeLutin. All Rights Reserved.