ENTITY numeric_expression ABSTRACT SUPERTYPE OF (ONEOF (simple_numeric_expression, unary_numeric_expression, binary_numeric_expression, multiple_arity_numeric_expression, length_function, value_function, numeric_defined_function)) SUBTYPE OF (expression); DERIVE is_int : LOGICAL := is_int_expr (SELF); sql_mappable : LOGICAL := is_SQL_mappable (SELF); END_ENTITY; -- numeric_expression |
Entity data types and their attributesgeneric_expression- expression - numeric_expression (DER) is_int: LOGICAL; (DER) sql_mappable: LOGICAL; |
binary_numeric_expression (ISO13584_EXPRESSIONS_SCHEMA) |
expression_extension_numeric (NUMERICAL_INTERFACE_MIM) |
length_function (ISO13584_EXPRESSIONS_SCHEMA) |
multiple_arity_numeric_expression (ISO13584_EXPRESSIONS_SCHEMA) |
numeric_defined_function (ISO13584_EXPRESSIONS_SCHEMA) |
simple_numeric_expression (ISO13584_EXPRESSIONS_SCHEMA) |
unary_numeric_expression (ISO13584_EXPRESSIONS_SCHEMA) |
value_function (ISO13584_EXPRESSIONS_SCHEMA) |
Global rules for this entity data type- |
public interface ENumeric_expression extends EExpressionis_int (derived attribute)int getIs_int(ENumeric_expression type)boolean testIs_int(ENumeric_expression type) sql_mappable (derived attribute)int getSql_mappable(ENumeric_expression type)boolean testSql_mappable(ENumeric_expression type) |
public class CNumeric_expression implements ENumeric_expressionstatic EAttribute attributeIs_int(ENumeric_expression type)static EAttribute attributeSql_mappable(ENumeric_expression type) |
public class ANumeric_expression extends AEntitypublic ENumeric_expression getByIndex(int index)public ENumeric_expression getCurrentMember(SdaiIterator it) |