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
-
Int()
-
-
Int(int)
-
-
add(int)
-
-
byteValue()
-
-
doubleValue()
-
-
floatValue()
-
-
intValue()
-
-
longValue()
-
-
setValue(int)
-
-
shortValue()
-
-
sub(int)
-
Int
public Int()
Int
public Int(int v)
setValue
public void setValue(int v)
add
public void add(int v)
sub
public void sub(int v)
byteValue
public byte byteValue()
- Overrides:
- byteValue in class Number
shortValue
public short shortValue()
- Overrides:
- shortValue in class Number
intValue
public int intValue()
- Overrides:
- intValue in class Number
longValue
public long longValue()
- Overrides:
- longValue in class Number
floatValue
public float floatValue()
- Overrides:
- floatValue in class Number
doubleValue
public double doubleValue()
- Overrides:
- doubleValue in class Number
All Packages Class Hierarchy This Package Previous Next Index