Uses of Interface
org.forgerock.opendj.ldap.Assertion
-
Packages that use Assertion Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.schema Classes and interfaces for constructing and querying LDAP schemas. -
-
Uses of Assertion in org.forgerock.opendj.ldap
Fields in org.forgerock.opendj.ldap declared as Assertion Modifier and Type Field Description static AssertionAssertion. UNDEFINED_ASSERTIONAn assertion that always return UNDEFINED for matches and that creates a match all query.Methods in org.forgerock.opendj.ldap that return Assertion Modifier and Type Method Description AssertionMatcher. getAssertion()Returns the assertion for this comparison filterMatcher.static AssertionAssertion. greaterOrEqualAssertion(String indexId, ByteSequence normalizedAssertionValue)Returns an assertion for greater than or equal comparisons.static AssertionAssertion. greaterThanAssertion(String indexId, ByteSequence normalizedAssertionValue)Returns an assertion for greater than comparisons.static AssertionAssertion. lessOrEqualAssertion(String indexId, ByteSequence normalizedAssertionValue)Returns an assertion for less than or equal comparisons.static AssertionAssertion. lessThanAssertion(String indexId, ByteSequence normalizedAssertionValue)Returns an assertion for less than comparisons.Methods in org.forgerock.opendj.ldap with parameters of type Assertion Modifier and Type Method Description ConditionResultAbstractAttribute. matchesApproximateAssertion(Assertion assertion, ByteSequence rawAssertion)ConditionResultAttribute. matchesApproximateAssertion(Assertion assertion, ByteSequence rawAssertion)Indicates whether this attribute matches the specified assertion using the attribute's default approximate matching rule.ConditionResultAbstractAttribute. matchesEqualityAssertion(Assertion assertion, ByteSequence rawAssertion)ConditionResultAttribute. matchesEqualityAssertion(Assertion assertion, ByteSequence rawAssertion)Indicates whether this attribute matches the specified assertion using the attribute's default equality matching rule.ConditionResultLinkedAttribute. 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.ConditionResultAbstractAttribute. matchesGreaterOrEqualAssertion(Assertion assertion, ByteSequence rawAssertion)ConditionResultAttribute. matchesGreaterOrEqualAssertion(Assertion assertion, ByteSequence rawAssertion)Indicates whether this attribute matches the specified assertion using the attribute's default ordering matching rule.ConditionResultAbstractAttribute. matchesLessOrEqualAssertion(Assertion assertion, ByteSequence rawAssertion)ConditionResultAttribute. matchesLessOrEqualAssertion(Assertion assertion, ByteSequence rawAssertion)Indicates whether this attribute matches the specified assertion using the attribute's default ordering matching rule.ConditionResultAbstractAttribute. matchesSubstringAssertion(Assertion assertion, ByteSequence rawInitialSubstring, List<? extends ByteSequence> rawAnySubstrings, ByteSequence rawFinalSubstring)ConditionResultAttribute. 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. -
Uses of Assertion in org.forgerock.opendj.ldap.schema
Methods in org.forgerock.opendj.ldap.schema that return Assertion Modifier and Type Method Description AssertionAbstractOrderingMatchingRuleImpl. getAssertion(Schema schema, ByteSequence value)AssertionMatchingRule. getAssertion(ByteSequence value)Returns the normalized form of the provided assertion value, which is best suited for efficiently performing matching operations on that value.default AssertionMatchingRuleImpl. getAssertion(Schema schema, ByteSequence assertionValue)Retrieves the normalized form of the provided assertion value, which is best suited for efficiently performing less than matching operations on that value.AssertionAbstractOrderingMatchingRuleImpl. getGreaterOrEqualAssertion(Schema schema, ByteSequence value)AssertionMatchingRule. getGreaterOrEqualAssertion(ByteSequence value)Returns the normalized form of the provided assertion value, which is best suited for efficiently performing greater than or equal ordering matching operations on that value.default AssertionMatchingRuleImpl. getGreaterOrEqualAssertion(Schema schema, ByteSequence value)Retrieves the normalized form of the provided assertion value, which is best suited for efficiently performing greater than or equal matching operations on that value.AssertionAbstractOrderingMatchingRuleImpl. getLessOrEqualAssertion(Schema schema, ByteSequence value)AssertionMatchingRule. getLessOrEqualAssertion(ByteSequence value)Returns the normalized form of the provided assertion value, which is best suited for efficiently performing greater than or equal ordering matching operations on that value.default AssertionMatchingRuleImpl. getLessOrEqualAssertion(Schema schema, ByteSequence value)Retrieves the normalized form of the provided assertion value, which is best suited for efficiently performing less than or equal matching operations on that value.AssertionMatchingRule. getSubstringAssertion(ByteSequence subInitial, List<? extends ByteSequence> subAnyElements, ByteSequence subFinal)Returns the normalized form of the provided assertion substring values, which is best suited for efficiently performing matching operations on that value.default AssertionMatchingRuleImpl. getSubstringAssertion(Schema schema, ByteSequence subInitial, List<? extends ByteSequence> subAnyElements, ByteSequence subFinal)Retrieves the normalized form of the provided assertion substring values, which is best suited for efficiently performing matching operations on that value.
-