org.openmdx.kernel.cci2.Condition Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// StructureType/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Generated by org.openmdx.application.mof.mapping.java.StructureMapper 2.17.7
// Generated at 2020-11-27T16:04:08.429Z
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.kernel.cci2;
public interface Condition
{
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field feature
.
* @return The non-null value for structure field feature
.
*/
public java.lang.String getFeature(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field quantifier
.
* @return The non-null value for structure field quantifier
.
*/
public short getQuantifier(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field type
.
* @return The non-null value for structure field type
.
*/
public short getType(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the structure field value
.
* @return A list containing all elements for this structure field.
*/
public java.util.List getValue(
);
// ----------------------------------------------------------------------------
// StructureType/Member
// ----------------------------------------------------------------------------
/**
* The structure's members
*/
enum Member {
feature
, quantifier
, type
, value
}
// ----------------------------------------------------------------------------
// StructureType/End
// ----------------------------------------------------------------------------
}