railo.commons.lang.types
Interface RefInteger


public interface RefInteger

Integer Type that can be modified


Method Summary
 void minus(int value)
          operation minus
 void plus(int value)
          operation plus
 void setValue(int value)
           
 java.lang.Double toDouble()
           
 double toDoubleValue()
           
 int toInt()
           
 java.lang.Integer toInteger()
           
 

Method Detail

setValue

public void setValue(int value)
Parameters:
value -

plus

public void plus(int value)
operation plus

Parameters:
value -

minus

public void minus(int value)
operation minus

Parameters:
value -

toInteger

public java.lang.Integer toInteger()
Returns:
returns value as integer Object

toInt

public int toInt()
Returns:
returns value as int

toDouble

public java.lang.Double toDouble()
Returns:
returns value as Double Object

toDoubleValue

public double toDoubleValue()
Returns:
returns value as double