org.opencrx.kernel.base.cci2.BooleanPropertyQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.base.cci2;
/**
* A {@code BooleanPropertyQuery} selects a set of instances of class {@code BooleanProperty} 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.854548804Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface BooleanPropertyQuery
extends org.opencrx.kernel.base.cci2.PropertyQuery
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code BooleanProperty} testing whether the value of the feature {@code booleanValue} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate booleanValue(
);
/**
* Adds a condition for the feature {@code booleanValue} to the predicate for {@code BooleanProperty}, which evaluates to {@code false} unless the value of the feature {@code booleanValue} 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.BooleanTypePredicate thereExistsBooleanValue(
);
/**
* Adds a condition for the feature {@code booleanValue} to the predicate for {@code BooleanProperty}, which evaluates to {@code false} unless the value of the feature {@code booleanValue} 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.BooleanTypePredicate forAllBooleanValue(
);
/**
* Allows to adds a sort instruction for {@code BooleanProperty} depending the feature {@code booleanValue}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByBooleanValue(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}