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

    Modifier and Type
    Method
    Description
    static <T> ConditionResult
    ConditionResult.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 to and(ConditionResult...), except that processing short-circuits as soon as FALSE is obtained.
    ConditionResult.and()
    Returns the logical AND of zero condition results, which is always TRUE.
    ConditionResult.and(ConditionResult r)
    Returns the logical AND of 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.
    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 <T> ConditionResult
    ConditionResult.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 to or(ConditionResult...), except that processing short-circuits as soon as TRUE is obtained.
    Filter.matches(Entry entry)
    Indicates whether this Filter matches the provided Entry using the default schema.
    Matcher.matches(Entry entry)
    Indicates whether this filter Matcher matches the provided Entry.
    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 is TRUE if this condition result is FALSE, TRUE if it is FALSE, and UNDEFINED otherwise.
    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.
    ConditionResult.or()
    Returns the logical OR of zero condition results, which is always FALSE.
    ConditionResult.or(ConditionResult r)
    Returns the logical OR of 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.
    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.
    ConditionResult.valueOf(boolean b)
    Returns the condition result which is equivalent to the provided boolean value.
    ConditionResult.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    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 ConditionResult
    Modifier and Type
    Method
    Description
    ConditionResult.and(ConditionResult r)
    Returns the logical AND of 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.
    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.
    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.
    ConditionResult.or(ConditionResult r)
    Returns the logical OR of 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.
    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.
    Method parameters in org.forgerock.opendj.ldap with type arguments of type ConditionResult
    Modifier and Type
    Method
    Description
    static <T> ConditionResult
    ConditionResult.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 to and(ConditionResult...), except that processing short-circuits as soon as FALSE is obtained.
    static <T> ConditionResult
    ConditionResult.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 to or(ConditionResult...), except that processing short-circuits as soon as TRUE is obtained.