org.opencrx.kernel.model1.jmi1.Classifier Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.jmi1;
/**
* Abstract class {@code Classifier}
*
* A classifier provides a classification of instances through a set of Features it contains.
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:37.646787134Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface Classifier
extends org.opencrx.kernel.model1.cci2.Classifier,
org.opencrx.kernel.model1.jmi1.GeneralizableElement{
// ----------------------------------------------------------------------------
// Instance/ReferenceGet0_nWithQuery
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code typedElement} for the specified query.
* Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should substitute this method with {@code javax.jdo.Query}
* @param query predicate which is applied to the set of referenced objects.
* @return The objects for which the predicate evaluates to {@code true}.
*/
public java.util.List getTypedElement(
org.opencrx.kernel.model1.cci2.TypedElementQuery query
);
// ----------------------------------------------------------------------------
// Instance/IntfReferenceGet0_1WithQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code typedElement} for the specified qualifier attribute value.
*
* @param qualifiedNameIsPersistent Defines whether value for the qualifier is persistent or not
* @param qualifiedName The value for the qualifier attribute that qualifies this reference.
* @return The possibly null value for this qualifier
*/
public org.opencrx.kernel.model1.jmi1.TypedElement getTypedElement(
boolean qualifiedNameIsPersistent,
java.lang.String qualifiedName
);
/**
* Retrieves the value for the reference {@code typedElement} for the specified qualifier attribute value.
*
* This method is equivalent to the preferred invocation {@code getTypedElement(false,qualifiedName)}.
*
* @param qualifiedName The value for the qualifier attribute that qualifies this reference.
* @return The possibly null value for this qualifier
*/
public org.opencrx.kernel.model1.jmi1.TypedElement getTypedElement(
java.lang.String qualifiedName
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}