Package chemaxon.struc.prop
Class MObjectProp
- java.lang.Object
-
- chemaxon.struc.MProp
-
- chemaxon.struc.prop.MObjectProp
-
- All Implemented Interfaces:
Serializable
,Cloneable
@PublicAPI public class MObjectProp extends MProp
Property that stores any object. It is imported and exported using serialization and base64 encoding.- 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 MObjectProp(Object o)
Constructs a property object.MObjectProp(String sval)
Constructs a 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)
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()
Create the serialized object base64 string representation.-
Methods inherited from class chemaxon.struc.MProp
convertToString, getGrinvCC, getPropArraySize, isCoordDependent, setCoordDependent
-
-
-
-
Constructor Detail
-
MObjectProp
public MObjectProp(Object o)
Constructs a property object.- Parameters:
o
- the object
-
MObjectProp
public MObjectProp(String sval) throws IOException
Constructs a property from a string value.- Parameters:
sval
- the string value- Throws:
IOException
-
-
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
- Throws:
IllegalArgumentException
- Since:
- Marvin 5.0, 11/05/2007
-
getPropValue
public Object getPropValue()
Gets the property value as an object.- Specified by:
getPropValue
in classMProp
- Returns:
- the object
-
getPropType
public String getPropType()
Gets the type name of the property.- Specified by:
getPropType
in classMProp
- Returns:
- "object"
-
getPropXSDType
public String getPropXSDType()
Gets the XSD type name of the property.- Specified by:
getPropXSDType
in classMProp
- Returns:
- "ENTITY"
-
cloneProp
public MProp cloneProp()
Clones the object.
-
toString
public String toString()
Create the serialized object base64 string representation.- Overrides:
toString
in classMProp
- Returns:
- a string representation of this object
- Throws:
IllegalArgumentException
- if serialization or base64 encoding fails.- Since:
- Marvin 5.7, 07/25/2011
-
-