All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.lzo.Int

java.lang.Object
   |
   +----java.lang.Number
           |
           +----org.lzo.Int

public class Int
extends Number
The Int class wraps a value of the primititve type int in an object. As opposed to java.lang.Integer the value can be modified after the object has been created.

Author:
Markus F.X.J. Oberhumer
See Also:
Integer

Constructor Index

 o Int()
 o Int(int)

Method Index

 o add(int)
 o byteValue()
 o doubleValue()
 o floatValue()
 o intValue()
 o longValue()
 o setValue(int)
 o shortValue()
 o sub(int)

Constructors

 o Int
 public Int()
 o Int
 public Int(int v)

Methods

 o setValue
 public void setValue(int v)
 o add
 public void add(int v)
 o sub
 public void sub(int v)
 o byteValue
 public byte byteValue()
Overrides:
byteValue in class Number
 o shortValue
 public short shortValue()
Overrides:
shortValue in class Number
 o intValue
 public int intValue()
Overrides:
intValue in class Number
 o longValue
 public long longValue()
Overrides:
longValue in class Number
 o floatValue
 public float floatValue()
Overrides:
floatValue in class Number
 o doubleValue
 public double doubleValue()
Overrides:
doubleValue in class Number

All Packages  Class Hierarchy  This Package  Previous  Next  Index