Class MIntegerArrayProp

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

@PublicAPI public class MIntegerArrayProp extends MProp
Integer array property.
Since:
Marvin 4.1, 11/20/2005
See Also:
  • Constructor Details

    • MIntegerArrayProp

      public MIntegerArrayProp(int[] x)
      Constructs a property object from an integer value.
      Parameters:
      x - the array
    • MIntegerArrayProp

      public MIntegerArrayProp(String sval, int size, int c) throws IllegalArgumentException
      Constructs an integer array property from a string value.
      Parameters:
      sval - the string value
      Throws:
      IllegalArgumentException
  • Method Details

    • getPropArraySize

      public int getPropArraySize()
      Gets the array size.
      Overrides:
      getPropArraySize in class MProp
      Returns:
      the array size
    • convertToString

      @Deprecated(forRemoval=true) @SubjectToRemoval(date=JUL_01_2025) public String convertToString(String fmt, int flags)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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
    • getPropValue

      public 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 String getPropType()
      Gets the type name of the property.
      Specified by:
      getPropType in class MProp
      Returns:
      "integer"
    • getPropXSDType

      public 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 Object clone()
      Clones the object.
      Overrides:
      clone in class Object
      Returns:
      the clone
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public 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