An enum that specifies the possible results of a call to VisitCallback#visit
.
VisitCallback.visit()
Modifier and Type | Field and Description |
---|---|
public static final VisitResult | ACCEPT
This result indicates that the tree visit should descend into current component's subtree. |
public static final VisitResult | COMPLETE
This result indicates that the tree visit should be terminated. |
public static final VisitResult | REJECT
This result indicates that the tree visit should continue, but should skip the current component's subtree. |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public static VisitResult | |
public static VisitResult[] |
ACCEPT | back to summary |
---|---|
public static final VisitResult ACCEPT This result indicates that the tree visit should descend into current component's subtree.
|
COMPLETE | back to summary |
---|---|
public static final VisitResult COMPLETE This result indicates that the tree visit should be terminated. |
REJECT | back to summary |
---|---|
public static final VisitResult REJECT This result indicates that the tree visit should continue, but should skip the current component's subtree. |
VisitResult | back to summary |
---|---|
private VisitResult() |
valueOf | back to summary |
---|---|
public static VisitResult valueOf(String name) |
values | back to summary |
---|---|
public static VisitResult[] values() |