public enum ConfIterateResultFlag extends Enum<ConfIterateResultFlag>
Enum Constant and Description |
---|
ITER_CONTINUE
The iterate() method should return ITER_CONTINUE when iteration should
continue with the nodes siblings.
|
ITER_RECURSE
The iterate() method should return ITER_RECURSE when iteration should
continue on all the nodes children.
|
ITER_STOP
The iterate() method should return ITER_STOP when no more iteration
should be done.
|
ITER_SUSPEND |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ConfIterateResultFlag |
valueOf(int i) |
static ConfIterateResultFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfIterateResultFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfIterateResultFlag ITER_STOP
public static final ConfIterateResultFlag ITER_RECURSE
public static final ConfIterateResultFlag ITER_CONTINUE
public static final ConfIterateResultFlag ITER_SUSPEND
public static ConfIterateResultFlag[] values()
for (ConfIterateResultFlag c : ConfIterateResultFlag.values()) System.out.println(c);
public static ConfIterateResultFlag 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 int getValue()
public static ConfIterateResultFlag valueOf(int i)