|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<DebugLevel>
cascading.operation.DebugLevel
public enum DebugLevel
Enum DebugLevel designates the level of a given Debug instance. This is used in conjunction with the
FlowConnector to plan debug operations out of a particular Flow instance.
| Enum Constant Summary | |
|---|---|
DEFAULT
|
|
NONE
|
|
VERBOSE
|
|
| Method Summary | |
|---|---|
boolean |
isNoneLevel()
Returns true if this enum instance represents a value that instructs the FlowPlanner to
remove all instances from the plan. |
boolean |
isStricterThan(PlannerLevel plannerLevel)
Returns true if the given PlannerLevel is less strict than this instance. |
static DebugLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DebugLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DebugLevel NONE
public static final DebugLevel DEFAULT
public static final DebugLevel VERBOSE
| Method Detail |
|---|
public static DebugLevel[] values()
for (DebugLevel c : DebugLevel.values()) System.out.println(c);
public static DebugLevel valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic boolean isNoneLevel()
PlannerLevelFlowPlanner to
remove all instances from the plan.
isNoneLevel in interface PlannerLevelpublic boolean isStricterThan(PlannerLevel plannerLevel)
PlannerLevelPlannerLevel is less strict than this instance.
isStricterThan in interface PlannerLevelplannerLevel - of type PlannerLevel
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||