public enum DiffIterateResultFlag extends Enum<DiffIterateResultFlag>
| 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 DiffIterateResultFlag | 
valueOf(int i)  | 
static DiffIterateResultFlag | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DiffIterateResultFlag[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DiffIterateResultFlag ITER_STOP
public static final DiffIterateResultFlag ITER_RECURSE
public static final DiffIterateResultFlag ITER_CONTINUE
public static final DiffIterateResultFlag ITER_SUSPEND
public static DiffIterateResultFlag[] values()
for (DiffIterateResultFlag c : DiffIterateResultFlag.values()) System.out.println(c);
public static DiffIterateResultFlag 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 DiffIterateResultFlag valueOf(int i)