Uses of Enum Class
org.forgerock.opendj.ldap.ConditionResult
Packages that use ConditionResult
Package
Description
Classes and interfaces for core types including connections, entries, and
attributes.
-
Uses of ConditionResult in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return ConditionResultModifier and TypeMethodDescriptionstatic <T> ConditionResultConditionResult.allOf(Iterable<T> elements, Function<T, ConditionResult> predicate) Applies a predicate to a sequence of elements and combines the results as if they were passed toand(ConditionResult...), except that processing short-circuits as soon asFALSEis obtained.static ConditionResultConditionResult.and()Returns the logical AND of zero condition results, which is alwaysTRUE.ConditionResult.and(ConditionResult r) Returns the logical AND of this condition result with the provided condition result, which isTRUEif both of the condition results areTRUE,FALSEif at least one of them isFALSE, andUNDEFINEDotherwise.static ConditionResultConditionResult.and(ConditionResult... results) Returns the logical AND of the provided condition results, which isTRUEif all of the provided condition results areTRUE,FALSEif at least one of them isFALSE, andUNDEFINEDotherwise.static <T> ConditionResultConditionResult.anyOf(Iterable<T> elements, Function<T, ConditionResult> predicate) Applies a predicate to a sequence of elements and combines the results as if they were passed toor(ConditionResult...), except that processing short-circuits as soon asTRUEis obtained.Indicates whether thisFiltermatches the providedEntryusing the default schema.Indicates whether this filterMatchermatches the providedEntry.Assertion.matchesValue(ByteString attributeValue) Indicates whether the provided attribute value should be considered a match for this assertion value according to the matching rule.ConditionResult.not()Returns the logical NOT of this condition result, which isTRUEif this condition result isFALSE,TRUEif it isFALSE, andUNDEFINEDotherwise.static ConditionResultConditionResult.not(ConditionResult r) Returns the logical NOT of the provided condition result, which isTRUEif the provided condition result isFALSE,TRUEif it isFALSE, andUNDEFINEDotherwise.static ConditionResultConditionResult.or()Returns the logical OR of zero condition results, which is alwaysFALSE.ConditionResult.or(ConditionResult r) Returns the logical OR of this condition result with the provided condition result, which isFALSEif both of the condition results areFALSE,TRUEif at least one of them isTRUE, andUNDEFINEDotherwise.static ConditionResultConditionResult.or(ConditionResult... results) Returns the logical OR of the provided condition results, which isFALSEif all of the provided condition results areFALSE,TRUEif at least one of them isTRUE, andUNDEFINEDotherwise.static ConditionResultConditionResult.valueOf(boolean b) Returns the condition result which is equivalent to the provided boolean value.static ConditionResultReturns the enum constant of this class with the specified name.static ConditionResult[]ConditionResult.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.forgerock.opendj.ldap with parameters of type ConditionResultModifier and TypeMethodDescriptionConditionResult.and(ConditionResult r) Returns the logical AND of this condition result with the provided condition result, which isTRUEif both of the condition results areTRUE,FALSEif at least one of them isFALSE, andUNDEFINEDotherwise.static ConditionResultConditionResult.and(ConditionResult... results) Returns the logical AND of the provided condition results, which isTRUEif all of the provided condition results areTRUE,FALSEif at least one of them isFALSE, andUNDEFINEDotherwise.static ConditionResultConditionResult.not(ConditionResult r) Returns the logical NOT of the provided condition result, which isTRUEif the provided condition result isFALSE,TRUEif it isFALSE, andUNDEFINEDotherwise.ConditionResult.or(ConditionResult r) Returns the logical OR of this condition result with the provided condition result, which isFALSEif both of the condition results areFALSE,TRUEif at least one of them isTRUE, andUNDEFINEDotherwise.static ConditionResultConditionResult.or(ConditionResult... results) Returns the logical OR of the provided condition results, which isFALSEif all of the provided condition results areFALSE,TRUEif at least one of them isTRUE, andUNDEFINEDotherwise.Method parameters in org.forgerock.opendj.ldap with type arguments of type ConditionResultModifier and TypeMethodDescriptionstatic <T> ConditionResultConditionResult.allOf(Iterable<T> elements, Function<T, ConditionResult> predicate) Applies a predicate to a sequence of elements and combines the results as if they were passed toand(ConditionResult...), except that processing short-circuits as soon asFALSEis obtained.static <T> ConditionResultConditionResult.anyOf(Iterable<T> elements, Function<T, ConditionResult> predicate) Applies a predicate to a sequence of elements and combines the results as if they were passed toor(ConditionResult...), except that processing short-circuits as soon asTRUEis obtained.