static ConditionResult |
ConditionResult.and() |
Returns the logical AND of zero condition results, which is always
TRUE.
|
ConditionResult |
ConditionResult.and(ConditionResult r) |
Returns the logical AND of the this condition result with the provided condition result, which is
TRUE if both of the condition results are TRUE, FALSE if at least one of them is FALSE,
and UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.and(ConditionResult... results) |
Returns the logical AND of the provided condition results, which is
TRUE if all of the provided condition results are TRUE,
FALSE if at least one of them is FALSE, and
UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.and(ConditionResult r1,
ConditionResult r2) |
Returns the logical AND of the provided condition results, which is
TRUE if both of the provided condition results are TRUE,
FALSE if at least one of them is FALSE , and
UNDEFINED otherwise.
|
ConditionResult |
Assertion.matches(ByteSequence normalizedAttributeValue) |
Indicates whether the provided attribute value should be considered a
match for this assertion value according to the matching rule.
|
ConditionResult |
Filter.matches(Entry entry) |
Indicates whether this Filter matches the provided Entry
using the default schema.
|
ConditionResult |
Matcher.matches(Entry entry) |
Indicates whether this filter Matcher matches the provided Entry.
|
default ConditionResult |
Assertion.matchesAny(Set<? extends ByteSequence> normalizedAttributeValues) |
Indicates whether the provided attribute values should be considered a
match for this assertion value according to the matching rule.
|
ConditionResult |
AbstractAttribute.matchesApproximateAssertion(Assertion assertion,
ByteSequence rawAssertion) |
|
ConditionResult |
Attribute.matchesApproximateAssertion(Assertion assertion,
ByteSequence rawAssertion) |
Indicates whether this attribute matches the specified assertion using the attribute's default approximate
matching rule.
|
ConditionResult |
AbstractAttribute.matchesEqualityAssertion(Assertion assertion,
ByteSequence rawAssertion) |
|
ConditionResult |
Attribute.matchesEqualityAssertion(Assertion assertion,
ByteSequence rawAssertion) |
Indicates whether this attribute matches the specified assertion using the attribute's default equality matching
rule.
|
ConditionResult |
LinkedAttribute.matchesEqualityAssertion(Assertion assertion,
ByteSequence rawAssertion) |
NOTE: it is only possible to optimize for the equality matching rule because the other matching rules may not be
compatible with the equality matching rule's normalized representation.
|
ConditionResult |
AbstractAttribute.matchesGreaterOrEqualAssertion(Assertion assertion,
ByteSequence rawAssertion) |
|
ConditionResult |
Attribute.matchesGreaterOrEqualAssertion(Assertion assertion,
ByteSequence rawAssertion) |
Indicates whether this attribute matches the specified assertion using the attribute's default ordering matching
rule.
|
ConditionResult |
AbstractAttribute.matchesLessOrEqualAssertion(Assertion assertion,
ByteSequence rawAssertion) |
|
ConditionResult |
Attribute.matchesLessOrEqualAssertion(Assertion assertion,
ByteSequence rawAssertion) |
Indicates whether this attribute matches the specified assertion using the attribute's default ordering matching
rule.
|
ConditionResult |
AbstractAttribute.matchesSubstringAssertion(Assertion assertion,
ByteSequence rawInitialSubstring,
List<? extends ByteSequence> rawAnySubstrings,
ByteSequence rawFinalSubstring) |
|
ConditionResult |
Attribute.matchesSubstringAssertion(Assertion assertion,
ByteSequence rawInitialSubstring,
List<? extends ByteSequence> rawAnySubstrings,
ByteSequence rawFinalSubstring) |
Indicates whether this attribute matches the specified assertion using the attribute's default ordering matching
rule.
|
ConditionResult |
ConditionResult.not() |
Returns the logical NOT of this condition result, which is TRUE if this condition result is
FALSE, TRUE if it is FALSE, and UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.not(ConditionResult r) |
Returns the logical NOT of the provided condition result, which is
TRUE if the provided condition result is FALSE,
TRUE if it is FALSE, and UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.or() |
Returns the logical OR of zero condition results, which is always
FALSE.
|
ConditionResult |
ConditionResult.or(ConditionResult r) |
Returns the logical OR of the this condition result with the provided condition result, which is FALSE if
both of the condition results are FALSE, TRUE if at least one of them is TRUE, and
UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.or(ConditionResult... results) |
Returns the logical OR of the provided condition results, which is
FALSE if all of the provided condition results are FALSE,
TRUE if at least one of them is TRUE, and
UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.or(ConditionResult r1,
ConditionResult r2) |
Returns the logical OR of the provided condition results, which is
FALSE if both of the provided condition results are FALSE
, TRUE if at least one of them is TRUE , and
UNDEFINED otherwise.
|
static ConditionResult |
ConditionResult.valueOf(boolean b) |
Returns the condition result which is equivalent to the provided boolean
value.
|
static ConditionResult |
ConditionResult.valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ConditionResult[] |
ConditionResult.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|