org.opencrx.kernel.model1.cci2.ElementQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.cci2;
/**
* A {@code ElementQuery} selects a set of instances of class {@code Element} 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.408476475Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface ElementQuery
extends org.opencrx.kernel.generic.cci2.CrxObjectQuery
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code Element} testing whether the value of the feature {@code annotation} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate annotation(
);
/**
* Adds a condition for the feature {@code annotation} to the predicate for {@code Element}, which evaluates to {@code false} unless the value of the feature {@code annotation} 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 thereExistsAnnotation(
);
/**
* Adds a condition for the feature {@code annotation} to the predicate for {@code Element}, which evaluates to {@code false} unless the value of the feature {@code annotation} 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 forAllAnnotation(
);
/**
* Allows to adds a sort instruction for {@code Element} depending the feature {@code annotation}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByAnnotation(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code Element} testing whether the value of the feature {@code container} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate container(
);
/**
* Adds a condition for the feature {@code container} to the predicate for {@code Element}, which evaluates to {@code false} unless the value of the feature {@code container} 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.NamespaceQuery thereExistsContainer(
);
/**
* Adds a condition for the feature {@code container} to the predicate for {@code Element}, which evaluates to {@code false} unless the value of the feature {@code container} 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.NamespaceQuery forAllContainer(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code Element} testing whether the value of the feature {@code elementOrder} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate elementOrder(
);
/**
* Adds a condition for the feature {@code elementOrder} to the predicate for {@code Element}, which evaluates to {@code false} unless the value of the feature {@code elementOrder} 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.ComparableTypePredicate thereExistsElementOrder(
);
/**
* Adds a condition for the feature {@code elementOrder} to the predicate for {@code Element}, which evaluates to {@code false} unless the value of the feature {@code elementOrder} 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.ComparableTypePredicate forAllElementOrder(
);
/**
* Allows to adds a sort instruction for {@code Element} depending the feature {@code elementOrder}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByElementOrder(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code name} to the predicate. The predicate for {@code Element} evaluates {@code true} if its value of feature {@code name} satisfies the selected condition.
*/
public org.w3c.cci2.StringTypePredicate name(
);
/**
* Allows to adds a sort instruction for {@code Element} depending the feature {@code name}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByName(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code qualifiedName} to the predicate. The predicate for {@code Element} evaluates {@code true} if its value of feature {@code qualifiedName} satisfies the selected condition.
*/
public org.w3c.cci2.StringTypePredicate qualifiedName(
);
/**
* Allows to adds a sort instruction for {@code Element} depending the feature {@code qualifiedName}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByQualifiedName(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code segment} to the predicate. The predicate for {@code Element} evaluates {@code true} if its value of feature {@code segment} satisfies the selected condition.
*/
public org.opencrx.kernel.model1.cci2.SegmentQuery segment(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code Element} testing whether the feature {@code stereotype} has values or not.
*/
public org.w3c.cci2.MultivaluedFeaturePredicate stereotype(
);
/**
* Adds a condition for the feature {@code stereotype} to the predicate for {@code Element}, which evaluates to {@code false} unless the values of the feature {@code stereotype} satisfy the given condition.
* Since the multiplicity for this attribute is 0..n, the attribute may have no values. in which case the condition is not satisfied
*/
public org.w3c.cci2.StringTypePredicate thereExistsStereotype(
);
/**
* Adds a condition for the feature {@code stereotype} to the predicate for {@code Element}, which evaluates to {@code false} unless the values of the feature {@code stereotype} satisfy the given condition.
*
Since the multiplicity for this attribute is 0..n, the attribute may have no values. in which case the condition is satisfied
*/
public org.w3c.cci2.StringTypePredicate forAllStereotype(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}