public final class Result
extends java.lang.Object
| Modifier and Type | Field | Description |
|---|---|---|
static Result |
FAIL |
Result indicating
Expression processing should stop. |
static Result |
PASS |
Result indicating
Expression processing should continue. |
static Result |
STOP |
Result indicating
Expression processing should not descend any more
directories. |
| Modifier and Type | Method | Description |
|---|---|---|
Result |
combine(Result other) |
Returns the combination of this and another result.
|
boolean |
equals(java.lang.Object obj) |
|
int |
hashCode() |
|
boolean |
isDescend() |
Should further directories be descended.
|
boolean |
isPass() |
Should processing continue.
|
Result |
negate() |
Negate this result.
|
java.lang.String |
toString() |
public static final Result PASS
Expression processing should continue.public static final Result FAIL
Expression processing should stop.public static final Result STOP
Expression processing should not descend any more
directories.public boolean isDescend()
public boolean isPass()
public Result combine(Result other)
other - other.public Result negate()
public java.lang.String toString()
toString in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.ObjectCopyright © 2008–2025 Apache Software Foundation. All rights reserved.