Package de.bsvrz.dav.daf.main.config
Interface DoubleAttributeType
-
- All Superinterfaces:
AttributeType
,java.lang.Comparable
,ConfigurationObject
,SystemObject
- All Known Implementing Classes:
DafDoubleAttributeType
public interface DoubleAttributeType extends AttributeType
Schnittstellenklasse zum Zugriff auf die Eigenschaften von Fließkomma-Attributtypen. Attribute von diesem Attributtyp enthalten Fließkommazahl mit 32 oder 64 Bit Genauigkeit. Durch den Attributtyp wird die Einheit und die Genauigkeit von Werten dieses Typs definiert.
-
-
Field Summary
Fields Modifier and Type Field Description static byte
DOUBLE
Ergebnis der MethodegetAccuracy()
für eine Genauigkeit entsprechend dem IEEE 754 floating-point "double format" mit 64 Bits.static byte
FLOAT
Ergebnis der MethodegetAccuracy()
für eine Genauigkeit entsprechend dem IEEE 754 floating-point "single format" mit 32 Bits.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte
getAccuracy()
Bestimmt die Genauigkeit von Attributen dieses Typs.java.lang.String
getUnit()
Bestimmt die Maßeinheit von Werten dieses Attributtyps.-
Methods inherited from interface de.bsvrz.dav.daf.main.config.AttributeType
getDefaultAttributeValue
-
Methods inherited from interface de.bsvrz.dav.daf.main.config.ConfigurationObject
addSet, duplicate, duplicate, getMutableSet, getNonMutableSet, getNotValidSince, getObjectSet, getObjectSets, getValidSince, removeSet, revalidate
-
Methods inherited from interface de.bsvrz.dav.daf.main.config.SystemObject
getConfigurationArea, getConfigurationData, getConfigurationData, getConfigurationData, getDataModel, getId, getInfo, getName, getNameOrPidOrId, getPid, getPidOrId, getPidOrNameOrId, getType, getUsedAttributeGroupUsages, invalidate, isOfType, isOfType, isValid, setConfigurationData, setConfigurationData, setConfigurationData, setName, toString
-
-
-
-
Field Detail
-
FLOAT
static final byte FLOAT
Ergebnis der MethodegetAccuracy()
für eine Genauigkeit entsprechend dem IEEE 754 floating-point "single format" mit 32 Bits.- See Also:
- Constant Field Values
-
DOUBLE
static final byte DOUBLE
Ergebnis der MethodegetAccuracy()
für eine Genauigkeit entsprechend dem IEEE 754 floating-point "double format" mit 64 Bits.- See Also:
- Constant Field Values
-
-