Package pulse.properties
Class NumericProperties
- java.lang.Object
-
- pulse.properties.NumericProperties
-
public class NumericProperties extends Object
Default operations with NumericProperties
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
compare(NumericProperty a, NumericProperty b)
Compares the numeric values of thisNumericProperty
andarg0
static NumericProperty
def(NumericPropertyKeyword keyword)
Searches for the defaultNumericProperty
corresponding tokeyword
in the list of pre-defined properties loaded from the respective.xml
file.static List<NumericProperty>
defaultList()
static NumericProperty
derive(NumericPropertyKeyword keyword, Number value)
Searches for the defaultNumericProperty
corresponding tokeyword
in the list of pre-defined properties loaded from the respective.xml
file, and if found creates a new {static boolean
isDiscrete(NumericPropertyKeyword key)
static boolean
isValueSensible(NumericProperty property, Number val)
Checks whether theval
that is going to be passed to theproperty
(a) has the same type as theproperty.getValue()
object; (b) is confined within the definition domain:minimum <= value <= maximum
.static String
printRangeAndNumber(NumericProperty p, Number value)
-
-
-
Method Detail
-
isValueSensible
public static boolean isValueSensible(NumericProperty property, Number val)
Checks whether theval
that is going to be passed to theproperty
(a) has the same type as theproperty.getValue()
object; (b) is confined within the definition domain:minimum <= value <= maximum
.- Parameters:
property
- theproperty
containing the definition domainval
- a numeric value, the conformity of which to the definition domain needs to be checked- Returns:
true
ifminimum <= val <= maximum
and if bothval
andvalue
are instances of the sameclass
;false
otherwise
-
printRangeAndNumber
public static String printRangeAndNumber(NumericProperty p, Number value)
-
defaultList
public static List<NumericProperty> defaultList()
-
def
public static NumericProperty def(NumericPropertyKeyword keyword)
Searches for the defaultNumericProperty
corresponding tokeyword
in the list of pre-defined properties loaded from the respective.xml
file.- Parameters:
keyword
- one of the constantNumericPropertyKeyword
s- Returns:
- a
NumericProperty
in the default list of properties - See Also:
NumericPropertyKeyword
-
compare
public static int compare(NumericProperty a, NumericProperty b)
Compares the numeric values of thisNumericProperty
andarg0
- Parameters:
a
- aNumericProperty
b
- anotherNumericProperty
- Returns:
true
if the values are equals
-
derive
public static NumericProperty derive(NumericPropertyKeyword keyword, Number value)
Searches for the defaultNumericProperty
corresponding tokeyword
in the list of pre-defined properties loaded from the respective.xml
file, and if found creates a new {- Parameters:
keyword
- one of the constantNumericPropertyKeyword
svalue
- the new value for the createdNumericProperty
- Returns:
- a new
NumericProperty
that is built according to the default pattern specified by thekeyword
, but with a differentvalue
- See Also:
NumericPropertyKeyword
-
isDiscrete
public static boolean isDiscrete(NumericPropertyKeyword key)
-
-