org.opencrx.kernel.model1.cci2.OperationQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.cci2;
/**
* A {@code OperationQuery} selects a set of instances of class {@code Operation} 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.359678255Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface OperationQuery
extends org.opencrx.kernel.model1.cci2.BehaviouralFeatureQuery
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code Operation} testing whether the feature {@code exception} has values or not.
*/
public org.w3c.cci2.MultivaluedFeaturePredicate exception(
);
/**
* Adds a condition for the feature {@code exception} to the predicate for {@code Operation}, which evaluates to {@code false} unless the value of the feature {@code exception} 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.opencrx.kernel.model1.cci2.ExceptionQuery thereExistsException(
);
/**
* Adds a condition for the feature {@code exception} to the predicate for {@code Operation}, which evaluates to {@code false} unless the value of the feature {@code exception} satisfies the given condition.
*
Since the attribute is optional its value may be {@code null}, in which case the condition is satisfied
*/
public org.opencrx.kernel.model1.cci2.ExceptionQuery forAllException(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code isQuery} to the predicate. The predicate for {@code Operation} evaluates {@code true} if its value of feature {@code isQuery} satisfies the selected condition.
*/
public org.w3c.cci2.BooleanTypePredicate isQuery(
);
/**
* Allows to adds a sort instruction for {@code Operation} depending the feature {@code isQuery}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByIsQuery(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code Operation} testing whether the value of the feature {@code semantics} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate semantics(
);
/**
* Adds a condition for the feature {@code semantics} to the predicate for {@code Operation}, which evaluates to {@code false} unless the value of the feature {@code semantics} 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 thereExistsSemantics(
);
/**
* Adds a condition for the feature {@code semantics} to the predicate for {@code Operation}, which evaluates to {@code false} unless the value of the feature {@code semantics} 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 forAllSemantics(
);
/**
* Allows to adds a sort instruction for {@code Operation} depending the feature {@code semantics}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderBySemantics(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code signature} to the predicate. The predicate for {@code Operation} evaluates {@code true} if its value of feature {@code signature} satisfies the selected condition.
*/
public org.w3c.cci2.StringTypePredicate signature(
);
/**
* Allows to adds a sort instruction for {@code Operation} depending the feature {@code signature}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderBySignature(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}