org.openmdx.kernel.cci2.ConditionQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Generated by org.openmdx.application.mof.mapping.java.QueryMapper 2.17.7
// Generated at 2020-11-27T16:04:08.429Z
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.kernel.cci2;
/**
*/
public interface ConditionQuery
extends org.w3c.cci2.AnyTypePredicate
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
*/
public org.w3c.cci2.StringTypePredicate feature(
);
/**
* Allows to adds a sort instruction for Condition
depending the feature feature
* Note: The order in which orderBy…
instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByFeature(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
*/
public org.w3c.cci2.ComparableTypePredicate quantifier(
);
/**
* Allows to adds a sort instruction for Condition
depending the feature quantifier
* Note: The order in which orderBy…
instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByQuantifier(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
*/
public org.w3c.cci2.ComparableTypePredicate type(
);
/**
* Allows to adds a sort instruction for Condition
depending the feature type
* Note: The order in which orderBy…
instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByType(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for Condition
testing whether the feature value
has values or not.
*/
public org.w3c.cci2.MultivaluedFeaturePredicate value(
);
/**
* Adds a condition for the feature value
to the predicate for Condition
, which evaluates to false
unless the values of the feature value
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.AnyTypePredicate thereExistsValue(
);
/**
* Adds a condition for the feature value
to the predicate for Condition
, which evaluates to false
unless the values of the feature value
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.AnyTypePredicate forAllValue(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}