org.opencrx.kernel.address1.cci2.EMailAddressableQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.address1.cci2;
/**
* A {@code EMailAddressableQuery} selects a set of instances of class {@code EMailAddressable} 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.110240852Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface EMailAddressableQuery
extends org.w3c.cci2.AnyTypePredicate
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code EMailAddressable} testing whether the value of the feature {@code emailAddress} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate emailAddress(
);
/**
* Adds a condition for the feature {@code emailAddress} to the predicate for {@code EMailAddressable}, which evaluates to {@code false} unless the value of the feature {@code emailAddress} 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 thereExistsEmailAddress(
);
/**
* Adds a condition for the feature {@code emailAddress} to the predicate for {@code EMailAddressable}, which evaluates to {@code false} unless the value of the feature {@code emailAddress} 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 forAllEmailAddress(
);
/**
* Allows to adds a sort instruction for {@code EMailAddressable} depending the feature {@code emailAddress}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByEmailAddress(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code emailFormat} to the predicate. The predicate for {@code EMailAddressable} evaluates {@code true} if its value of feature {@code emailFormat} satisfies the selected condition.
*/
public org.w3c.cci2.ComparableTypePredicate emailFormat(
);
/**
* Allows to adds a sort instruction for {@code EMailAddressable} depending the feature {@code emailFormat}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByEmailFormat(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code emailType} to the predicate. The predicate for {@code EMailAddressable} evaluates {@code true} if its value of feature {@code emailType} satisfies the selected condition.
*/
public org.w3c.cci2.ComparableTypePredicate emailType(
);
/**
* Allows to adds a sort instruction for {@code EMailAddressable} depending the feature {@code emailType}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByEmailType(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}