public enum XPathNodeIterateResultFlag extends Enum<XPathNodeIterateResultFlag>
result(ConfObject[],ConfValue,Object) method
 should return any of the following two constants| Enum Constant and Description | 
|---|
ITER_CONTINUE
The  
result method should return
 ITER_CONTINUE when iteration should
 continue with the next resulting node (if any). | 
ITER_STOP
The  
result method should return ITER_STOP
 when no more iteration should be done. | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getValue()  | 
static XPathNodeIterateResultFlag | 
valueOf(int i)  | 
static XPathNodeIterateResultFlag | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static XPathNodeIterateResultFlag[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final XPathNodeIterateResultFlag ITER_STOP
result method should return ITER_STOP
 when no more iteration should be done.public static final XPathNodeIterateResultFlag ITER_CONTINUE
result method should return
 ITER_CONTINUE when iteration should
 continue with the next resulting node (if any).public static XPathNodeIterateResultFlag[] values()
for (XPathNodeIterateResultFlag c : XPathNodeIterateResultFlag.values()) System.out.println(c);
public static XPathNodeIterateResultFlag 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 XPathNodeIterateResultFlag valueOf(int i)