|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ElementQuery
| Method Summary | |
|---|---|
OptionalFeaturePredicate |
annotation()
Adds a constraint to the predicate for Element testing whether the value of the feature annotation is null or not. |
OptionalFeaturePredicate |
container()
Adds a constraint to the predicate for Element testing whether the value of the feature container is null or not. |
OptionalFeaturePredicate |
elementOrder()
Adds a constraint to the predicate for Element testing whether the value of the feature elementOrder is null or not. |
StringTypePredicate |
forAllAnnotation()
Adds a condition for the feature annotation to the predicate for Element, which evaluates to false unless the value of the feature annotation satisfies the given condition. |
NamespaceQuery |
forAllContainer()
Adds a condition for the feature container to the predicate for Element, which evaluates to false unless the value of the feature container satisfies the given condition. |
ComparableTypePredicate<Integer> |
forAllElementOrder()
Adds a condition for the feature elementOrder to the predicate for Element, which evaluates to false unless the value of the feature elementOrder satisfies the given condition. |
StringTypePredicate |
forAllStereotype()
Adds a condition for the feature stereotype to the predicate for Element, which evaluates to false unless the values of the feature stereotype satisfy the given condition. |
StringTypePredicate |
name()
|
SimpleTypeOrder |
orderByAnnotation()
Allows to adds a sort instruction for Element depending the feature annotation
Note: The order in which orderBy… instructions are given is relevant! |
SimpleTypeOrder |
orderByElementOrder()
Allows to adds a sort instruction for Element depending the feature elementOrder
Note: The order in which orderBy… instructions are given is relevant! |
SimpleTypeOrder |
orderByName()
Allows to adds a sort instruction for Element depending the feature name
Note: The order in which orderBy… instructions are given is relevant! |
SimpleTypeOrder |
orderByQualifiedName()
Allows to adds a sort instruction for Element depending the feature qualifiedName
Note: The order in which orderBy… instructions are given is relevant! |
MultivaluedTypeOrder |
orderByStereotype()
Allows to adds a sort instruction for Element depending the feature stereotype
Note: The order in which orderBy… instructions are given is relevant! |
StringTypePredicate |
qualifiedName()
|
MultivaluedFeaturePredicate |
stereotype()
Adds a constraint to the predicate for Element testing whether the feature stereotype has values or not. |
StringTypePredicate |
thereExistsAnnotation()
Adds a condition for the feature annotation to the predicate for Element, which evaluates to false unless the value of the feature annotation satisfies the given condition. |
NamespaceQuery |
thereExistsContainer()
Adds a condition for the feature container to the predicate for Element, which evaluates to false unless the value of the feature container satisfies the given condition. |
ComparableTypePredicate<Integer> |
thereExistsElementOrder()
Adds a condition for the feature elementOrder to the predicate for Element, which evaluates to false unless the value of the feature elementOrder satisfies the given condition. |
StringTypePredicate |
thereExistsStereotype()
Adds a condition for the feature stereotype to the predicate for Element, which evaluates to false unless the values of the feature stereotype satisfy the given condition. |
| Methods inherited from interface org.opencrx.kernel.base.cci2.SecureObjectQuery |
|---|
accessGrantedByParent, accessLevelBrowse, accessLevelDelete, accessLevelUpdate, forAllAccessGrantedByParent, forAllOwner, forAllOwningGroup, forAllOwningUser, orderByAccessLevelBrowse, orderByAccessLevelDelete, orderByAccessLevelUpdate, orderByOwner, owner, owningGroup, owningUser, thereExistsAccessGrantedByParent, thereExistsOwner, thereExistsOwningGroup, thereExistsOwningUser |
| Methods inherited from interface org.openmdx.base.cci2.BasicObjectQuery |
|---|
createdAt, createdBy, forAllCreatedBy, forAllModifiedBy, modifiedAt, modifiedBy, orderByCreatedAt, orderByCreatedBy, orderByModifiedAt, orderByModifiedBy, thereExistsCreatedBy, thereExistsModifiedBy |
| Methods inherited from interface org.openmdx.base.cci2.ContextCapableQuery |
|---|
context, forAllContext, thereExistsContext |
| Methods inherited from interface org.openmdx.base.cci2.ExtentCapableQuery |
|---|
identity, orderByIdentity |
| Methods inherited from interface org.w3c.cci2.AnyTypePredicate |
|---|
elementOf, elementOf, equals, equalTo, notAnElementOf, notAnElementOf, notEqualTo |
| Method Detail |
|---|
OptionalFeaturePredicate annotation()
Element testing whether the value of the feature annotation is null or not.
StringTypePredicate thereExistsAnnotation()
annotation to the predicate for Element, which evaluates to false unless the value of the feature annotation satisfies the given condition.
Since the attribute is optional its value may be null, in which case the condition is not satisfied
StringTypePredicate forAllAnnotation()
annotation to the predicate for Element, which evaluates to false unless the value of the feature annotation satisfies the given condition.
Since the attribute is optional its value may be null, in which case the condition is satisfied
SimpleTypeOrder orderByAnnotation()
Element depending the feature annotation
Note: The order in which orderBy… instructions are given is relevant!
OptionalFeaturePredicate container()
Element testing whether the value of the feature container is null or not.
NamespaceQuery thereExistsContainer()
container to the predicate for Element, which evaluates to false unless the value of the feature container satisfies the given condition.
Since the attribute is optional its value may be null, in which case the condition is not satisfied
NamespaceQuery forAllContainer()
container to the predicate for Element, which evaluates to false unless the value of the feature container satisfies the given condition.
Since the attribute is optional its value may be null, in which case the condition is satisfied
OptionalFeaturePredicate elementOrder()
Element testing whether the value of the feature elementOrder is null or not.
ComparableTypePredicate<Integer> thereExistsElementOrder()
elementOrder to the predicate for Element, which evaluates to false unless the value of the feature elementOrder satisfies the given condition.
Since the attribute is optional its value may be null, in which case the condition is not satisfied
ComparableTypePredicate<Integer> forAllElementOrder()
elementOrder to the predicate for Element, which evaluates to false unless the value of the feature elementOrder satisfies the given condition.
Since the attribute is optional its value may be null, in which case the condition is satisfied
SimpleTypeOrder orderByElementOrder()
Element depending the feature elementOrder
Note: The order in which orderBy… instructions are given is relevant!
StringTypePredicate name()
SimpleTypeOrder orderByName()
Element depending the feature name
Note: The order in which orderBy… instructions are given is relevant!
StringTypePredicate qualifiedName()
SimpleTypeOrder orderByQualifiedName()
Element depending the feature qualifiedName
Note: The order in which orderBy… instructions are given is relevant!
MultivaluedFeaturePredicate stereotype()
Element testing whether the feature stereotype has values or not.
StringTypePredicate thereExistsStereotype()
stereotype to the predicate for Element, which evaluates to false unless the values of the feature 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
StringTypePredicate forAllStereotype()
stereotype to the predicate for Element, which evaluates to false unless the values of the feature 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
MultivaluedTypeOrder orderByStereotype()
Element depending the feature stereotype
Note: The order in which orderBy… instructions are given is relevant!
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||