Uses of Interface
de.espirit.or.query.Constraint

Packages that use Constraint
Package
Description
 
  • Uses of Constraint in de.espirit.or.query

    Subinterfaces of Constraint in de.espirit.or.query
    Modifier and Type
    Interface
    Description
    interface 
    The base class for all constraints which define an attribute based filter.
    Classes in de.espirit.or.query that implement Constraint
    Modifier and Type
    Class
    Description
    class 
    The base class for all implementations of Constraint which define an attribute based filter.
    class 
    Interface to combine different sub constraints with and
    class 
    The base class of all compare constraints.
    class 
    The base class of all composed constraints.
    class 
    Constraint to check if belonging attribute is equal to a specific value.
    class 
    Constraint to check if belonging attribute is greater than a specific value.
    class 
    Constraint to compare if belonging attribute is greater than or equals to a specific value.
    class 
    Constraint representing the IN operator.
    class 
    Constraint to check if belonging attribute is not null
    class 
    Constraint to check if belonging attribute is null
    class 
    Constraint to compare if belonging attribute is less than a specific value.
    class 
    Constraint to compare if belonging attribute is less than or equasl to a specific value.
    class 
    Constraint to compare the belonging attribute value by matching against the pattern specified by value.
    class 
    Constraint to compare if belonging attribute is not equal to a specific value.
    class 
    Interface to combine different sub constraints with or
    Methods in de.espirit.or.query that return Constraint
    Modifier and Type
    Method
    Description
    @Nullable Constraint
    Select.getConstraint()
    Return the constraint defined by this select.
    Methods in de.espirit.or.query that return types with arguments of type Constraint
    Modifier and Type
    Method
    Description
    ComposedConstraint.getConstraints()
    Return an unmodifiable list of all sub contraints contained in this composed constraint.
    Methods in de.espirit.or.query with parameters of type Constraint
    Modifier and Type
    Method
    Description
    void
    ComposedConstraint.add(@NotNull Constraint constraint)
    Add a new sub constraint to this composed constraint.
    void
    Select.setConstraint(Constraint constraint)
    Set the select constraint to constraint.
    Constructors in de.espirit.or.query with parameters of type Constraint
    Modifier
    Constructor
    Description
     
    And(@NotNull Constraint constraint)
    Creates an And with the given sub constraint.
     
    And(@NotNull Constraint constraint1, @NotNull Constraint constraint2)
    Creates an And combining the given constraints.