org.openmdx.base.cci2.SegmentQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.base.cci2;
/**
*/
public interface SegmentQuery
extends org.openmdx.base.cci2.ContextCapableQuery
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for Segment
testing whether the value of the feature description
is null
or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate description(
);
/**
* Adds a condition for the feature description
to the predicate for Segment
, which evaluates to false
unless the value of the feature description
satisfies the given condition.
* Since the attribute is optional its value may be null
, in which case the condition is not satisfied
*/
public org.w3c.cci2.StringTypePredicate thereExistsDescription(
);
/**
* Adds a condition for the feature description
to the predicate for Segment
, which evaluates to false
unless the value of the feature description
satisfies the given condition.
*
Since the attribute is optional its value may be null
, in which case the condition is satisfied
*/
public org.w3c.cci2.StringTypePredicate forAllDescription(
);
/**
* Allows to adds a sort instruction for Segment
depending the feature description
* Note: The order in which orderBy…
instructions are given is relevant!
*/
public org.w3c.cci2.StringTypeOrder orderByDescription(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for Segment
testing whether the feature extent
has values or not.
*/
public org.w3c.cci2.MultivaluedFeaturePredicate extent(
);
/**
* Adds a condition for the feature extent
to the predicate for Segment
, which evaluates to false
unless the value of the feature extent
satisfies the given condition.
*
Since the attribute is optional its value may be null
, in which case the condition is not satisfied
*/
public org.openmdx.base.cci2.ExtentCapableQuery thereExistsExtent(
);
/**
* Adds a condition for the feature extent
to the predicate for Segment
, which evaluates to false
unless the value of the feature extent
satisfies the given condition.
*
Since the attribute is optional its value may be null
, in which case the condition is satisfied
*/
public org.openmdx.base.cci2.ExtentCapableQuery forAllExtent(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.base.cci2.ProviderQuery provider(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}