chemaxon.struc.prop
Class MIntegerArrayProp

java.lang.Object
  extended by chemaxon.struc.MProp
      extended by chemaxon.struc.prop.MIntegerArrayProp
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable

public class MIntegerArrayProp
extends MProp

Integer array property.

Since:
Marvin 4.1, 11/20/2005
Version:
5.0, 11/05/2007
Author:
Peter Csizmadia
See Also:
Serialized Form

Field Summary
 
Fields inherited from class chemaxon.struc.MProp
CONV_SELFREF, COORDDEP
 
Constructor Summary
MIntegerArrayProp(int[] x)
          Constructs a property object from an integer value.
MIntegerArrayProp(java.lang.String sval, int size, int c)
          Constructs an integer array property from a string value.
 
Method Summary
 java.lang.Object clone()
          Clones the object.
 MProp cloneProp()
          Clones the object.
 java.lang.String convertToString(java.lang.String fmt, int flags)
          Deprecated. As of Marvin 5.7, replaced by MPropHandler.convertToString(MProp, String)
 boolean equals(java.lang.Object o)
           
 int[] getIntArray()
          Gets the integer value.
 int getPropArraySize()
          Gets the array size.
 java.lang.String getPropType()
          Gets the type name of the property.
 java.lang.Object getPropValue()
          Gets the property value as an object.
 java.lang.String getPropXSDType()
          Gets the XSD type name of the property.
 java.lang.String toString()
          Overrides Object.toString() to ease debugging.
 
Methods inherited from class chemaxon.struc.MProp
convertToString, getGrinvCC, isCoordDependent, setCoordDependent
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MIntegerArrayProp

public MIntegerArrayProp(int[] x)
Constructs a property object from an integer value.

Parameters:
x - the array

MIntegerArrayProp

public MIntegerArrayProp(java.lang.String sval,
                         int size,
                         int c)
                  throws java.lang.IllegalArgumentException
Constructs an integer array property from a string value.

Parameters:
sval - the string value
Throws:
java.lang.IllegalArgumentException
Method Detail

getPropArraySize

public int getPropArraySize()
Gets the array size.

Overrides:
getPropArraySize in class MProp
Returns:
the array size

convertToString

public java.lang.String convertToString(java.lang.String fmt,
                                        int flags)
Deprecated. As of Marvin 5.7, replaced by MPropHandler.convertToString(MProp, String)

Converts the property to text format.

Specified by:
convertToString in class MProp
Parameters:
fmt - the molecule file format or null
flags - optional conversion flags
Returns:
the string
Since:
Marvin 4.1.7, 04/10/2007
See Also:
MProp.CONV_SELFREF

getPropValue

public java.lang.Object getPropValue()
Gets the property value as an object.

Specified by:
getPropValue in class MProp
Returns:
the Integer

getIntArray

public final int[] getIntArray()
Gets the integer value.

Returns:
the value

getPropType

public java.lang.String getPropType()
Gets the type name of the property.

Specified by:
getPropType in class MProp
Returns:
"integer"

getPropXSDType

public java.lang.String getPropXSDType()
Gets the XSD type name of the property.

Specified by:
getPropXSDType in class MProp
Returns:
"integer"

cloneProp

public MProp cloneProp()
Clones the object.

Specified by:
cloneProp in class MProp
Returns:
the clone

clone

public java.lang.Object clone()
Clones the object.

Overrides:
clone in class java.lang.Object
Returns:
the clone

equals

public boolean equals(java.lang.Object o)
Overrides:
equals in class java.lang.Object

toString

public java.lang.String toString()
Description copied from class: MProp
Overrides Object.toString() to ease debugging. Returns a string consisting of the classname (without the package name!), the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object.

Overrides:
toString in class MProp
Returns:
a string representation of this object
Since:
Marvin 5.7, 07/25/2011