See: Description
Class | Description |
---|---|
DataNormalizationBooleanRule |
A rule used by Data Normalization Rule Generation from Ontologies
replaces common expressions used to denote logical true / false: 0, 1, t, f, true, false, y, n, yes, no
|
DataNormalizationDateRule |
A rule used by Data Normalization Rule Generation from Ontologies
replaces common date substrings with correct date strings if possible
|
DataNormalizationIntegerRule |
A rule used by Data Normalization Rule Generation from Ontologies
convert to integral value by calculating sign(x) * abs(number(x)), default to 0 if null or incompatible
Unwanted behaviour of different approaches:
floor(-1.2) = -2
round(1.6) = 2
*("ahoj") = undefined -> fail
|
DataNormalizationNonNegativeIntegerRule |
A rule used by Data Normalization Rule Generation from Ontologies
convert to non negative integral value by calculating number(x), default to 0 if null or incompatible or < 0
|
DataNormalizationNonPositiveIntegerRule |
A rule used by Data Normalization Rule Generation from Ontologies
convert to non negative integral value by calculating number(x), default to 0 if null or incompatible or > 0
Unwanted behaviour of different approaches:
floor(-1.2) = -2
|
DataNormalizationNumberRule |
A rule used by Data Normalization Rule Generation from Ontologies
converts anything to a number
a bit to complicated but allows its argument to be incompatible -> result = 0
|
DataNormalizationRule | |
DataNormalizationRulesModel |
Utility class used to query rules and generate new rules from ontologies
|
DataNormalizationStringRule |
A rule used by Data Normalization Rule Generation from Ontologies
converts numbers, dates...
|
Enum | Description |
---|---|
DataNormalizationRule.EnumRuleComponentType |
The type of the modification to be done by one component of the rule
|
Copyright © 2013. All Rights Reserved.