Package chemaxon.struc.prop
Class MDoubleProp
- java.lang.Object
-
- chemaxon.struc.MProp
-
- chemaxon.struc.prop.MDoubleProp
-
- All Implemented Interfaces:
Serializable
,Cloneable
@PublicAPI public class MDoubleProp extends MProp
Double floating point property.- Since:
- Marvin 4.1, 11/20/2005
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class chemaxon.struc.MProp
COORDDEP, TYPE_3D_COORDS, TYPE_ARRAY_BYTE, TYPE_ARRAY_DOUBLE, TYPE_ARRAY_INTEGER, TYPE_BOOLEAN, TYPE_COLLECTION_HASH, TYPE_COLLECTION_LIST, TYPE_CONFORMER_DESCRIPTOR, TYPE_DOUBLE, TYPE_FONT, TYPE_INTEGER, TYPE_MDOCUMENT_PROP, TYPE_MOLECULE, TYPE_OBJECT, TYPE_STRING, TYPE_VOLUMETRIC_DATA
-
-
Constructor Summary
Constructors Constructor Description MDoubleProp(double x)
Constructs a property object from a double floating point value.MDoubleProp(String sval)
Constructs a double floating point property from a string value.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Object
clone()
Clones the object.MProp
cloneProp()
Clones the object.String
convertToString(String fmt, int flags)
Deprecated.As of Marvin 5.7, replaced byMPropHandler.convertToString(MProp, String)
double
doubleValue()
Gets the double floating point value.boolean
equals(Object o)
String
getPropType()
Gets the type name of the property.Object
getPropValue()
Gets the property value as an object.String
getPropXSDType()
Gets the XSD type name of the property.int
hashCode()
String
toString()
Overrides Object.toString() to ease debugging.-
Methods inherited from class chemaxon.struc.MProp
convertToString, getGrinvCC, getPropArraySize, isCoordDependent, setCoordDependent
-
-
-
-
Constructor Detail
-
MDoubleProp
public MDoubleProp(double x)
Constructs a property object from a double floating point value.- Parameters:
x
- the value
-
MDoubleProp
public MDoubleProp(String sval) throws IllegalArgumentException
Constructs a double floating point property from a string value.- Parameters:
sval
- the string value- Throws:
IllegalArgumentException
-
-
Method Detail
-
convertToString
@Deprecated public String convertToString(String fmt, int flags)
Deprecated.As of Marvin 5.7, replaced byMPropHandler.convertToString(MProp, String)
Converts the property to text format.- Specified by:
convertToString
in classMProp
- Parameters:
fmt
- the molecule file format ornull
flags
- optional conversion flags- Returns:
- the string
- Since:
- Marvin 4.1.7, 04/10/2007
-
getPropValue
public Object getPropValue()
Gets the property value as an object.- Specified by:
getPropValue
in classMProp
- Returns:
- the Double
-
doubleValue
public final double doubleValue()
Gets the double floating point value.- Returns:
- the value
-
getPropType
public String getPropType()
Gets the type name of the property.- Specified by:
getPropType
in classMProp
- Returns:
- "double"
-
getPropXSDType
public String getPropXSDType()
Gets the XSD type name of the property.- Specified by:
getPropXSDType
in classMProp
- Returns:
- "double"
-
cloneProp
public MProp cloneProp()
Clones the object.
-
-