org.opencrx.kernel.base.cci2.ChartQuery Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.base.cci2;
/**
* A {@code ChartQuery} selects a set of instances of class {@code Chart} 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.801424564Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface ChartQuery
extends org.w3c.cci2.AnyTypePredicate
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code chart} to the predicate. The predicate for {@code Chart} evaluates {@code true} if its value of feature {@code chart} satisfies the selected condition.
*/
public org.w3c.cci2.AnyTypePredicate chart(
);
/**
* Allows to adds a sort instruction for {@code Chart} depending the feature {@code chart}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByChart(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code chartMimeType} to the predicate. The predicate for {@code Chart} evaluates {@code true} if its value of feature {@code chartMimeType} satisfies the selected condition.
*/
public org.w3c.cci2.StringTypePredicate chartMimeType(
);
/**
* Allows to adds a sort instruction for {@code Chart} depending the feature {@code chartMimeType}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByChartMimeType(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code chartName} to the predicate. The predicate for {@code Chart} evaluates {@code true} if its value of feature {@code chartName} satisfies the selected condition.
*/
public org.w3c.cci2.StringTypePredicate chartName(
);
/**
* Allows to adds a sort instruction for {@code Chart} depending the feature {@code chartName}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByChartName(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code description} to the predicate. The predicate for {@code Chart} evaluates {@code true} if its value of feature {@code description} satisfies the selected condition.
*/
public org.w3c.cci2.StringTypePredicate description(
);
/**
* Allows to adds a sort instruction for {@code Chart} depending the feature {@code description}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByDescription(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}