org.opencrx.kernel.account1.cci2.ContactRelationshipQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.account1.cci2;
/**
* A {@code ContactRelationshipQuery} selects a set of instances of class {@code ContactRelationship} based on conditions to be met by their attributes.
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.QueryMapper",
date = "2023-10-28T12:15:35.687702033Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface ContactRelationshipQuery
extends org.opencrx.kernel.generic.cci2.CrxObjectQuery
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code ContactRelationship} testing whether the value of the feature {@code complimentaryClose} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate complimentaryClose(
);
/**
* Adds a condition for the feature {@code complimentaryClose} to the predicate for {@code ContactRelationship}, which evaluates to {@code false} unless the value of the feature {@code complimentaryClose} satisfies the given condition.
* Since the attribute is optional its value may be {@code null}, in which case the condition is not satisfied
*/
public org.w3c.cci2.StringTypePredicate thereExistsComplimentaryClose(
);
/**
* Adds a condition for the feature {@code complimentaryClose} to the predicate for {@code ContactRelationship}, which evaluates to {@code false} unless the value of the feature {@code complimentaryClose} satisfies the given condition.
*
Since the attribute is optional its value may be {@code null}, in which case the condition is satisfied
*/
public org.w3c.cci2.StringTypePredicate forAllComplimentaryClose(
);
/**
* Allows to adds a sort instruction for {@code ContactRelationship} depending the feature {@code complimentaryClose}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByComplimentaryClose(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code ContactRelationship} testing whether the value of the feature {@code salutation} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate salutation(
);
/**
* Adds a condition for the feature {@code salutation} to the predicate for {@code ContactRelationship}, which evaluates to {@code false} unless the value of the feature {@code salutation} satisfies the given condition.
*
Since the attribute is optional its value may be {@code null}, in which case the condition is not satisfied
*/
public org.w3c.cci2.StringTypePredicate thereExistsSalutation(
);
/**
* Adds a condition for the feature {@code salutation} to the predicate for {@code ContactRelationship}, which evaluates to {@code false} unless the value of the feature {@code salutation} satisfies the given condition.
*
Since the attribute is optional its value may be {@code null}, in which case the condition is satisfied
*/
public org.w3c.cci2.StringTypePredicate forAllSalutation(
);
/**
* Allows to adds a sort instruction for {@code ContactRelationship} depending the feature {@code salutation}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderBySalutation(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code toContact} to the predicate. The predicate for {@code ContactRelationship} evaluates {@code true} if its value of feature {@code toContact} satisfies the selected condition.
*/
public org.opencrx.kernel.account1.cci2.ContactQuery toContact(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}