public class

NumberProperty

extends Property
java.lang.Object
   ↳ com.emc.documentum.fs.datamodel.core.properties.Property
     ↳ com.emc.documentum.fs.datamodel.core.properties.NumberProperty

Class Overview

Java class for NumberProperty complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="NumberProperty">
   <complexContent>
     <extension base="{http://properties.core.datamodel.fs.documentum.emc.com/}Property">
       <sequence>
         <choice minOccurs="0">
           <element name="Short" type="{http://www.w3.org/2001/XMLSchema}short"/>
           <element name="Integer" type="{http://www.w3.org/2001/XMLSchema}int"/>
           <element name="Long" type="{http://www.w3.org/2001/XMLSchema}long"/>
           <element name="Double" type="{http://www.w3.org/2001/XMLSchema}double"/>
         </choice>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 

Summary

Fields
protected Double _double
protected Long _long
protected Short _short
protected Integer integer
[Expand]
Inherited Fields
From class com.emc.documentum.fs.datamodel.core.properties.Property
Public Constructors
NumberProperty()
Public Methods
Double getDouble()
Gets the value of the double property.
Integer getInteger()
Gets the value of the integer property.
Long getLong()
Gets the value of the long property.
Short getShort()
Gets the value of the short property.
void setDouble(Double value)
Sets the value of the double property.
void setInteger(Integer value)
Sets the value of the integer property.
void setLong(Long value)
Sets the value of the long property.
void setShort(Short value)
Sets the value of the short property.
[Expand]
Inherited Methods
From class com.emc.documentum.fs.datamodel.core.properties.Property
From class java.lang.Object

Fields

protected Double _double

protected Long _long

protected Short _short

protected Integer integer

Public Constructors

public NumberProperty ()

Public Methods

public Double getDouble ()

Gets the value of the double property.

Returns
  • possible object is Double

public Integer getInteger ()

Gets the value of the integer property.

Returns
  • possible object is Integer

public Long getLong ()

Gets the value of the long property.

Returns
  • possible object is Long

public Short getShort ()

Gets the value of the short property.

Returns
  • possible object is Short

public void setDouble (Double value)

Sets the value of the double property.

Parameters
value Allowed object is Double

public void setInteger (Integer value)

Sets the value of the integer property.

Parameters
value Allowed object is Integer

public void setLong (Long value)

Sets the value of the long property.

Parameters
value Allowed object is Long

public void setShort (Short value)

Sets the value of the short property.

Parameters
value Allowed object is Short