java.lang

class Integer

[source: java/lang/Integer.scala]

final class Integer
extends Number with Comparable

Class Integer implements the boxing/unboxing from/to value types.

Boxing and unboxing enable value types to be treated as objects; they provide a unified view of the type system wherein a value of any type can ultimately be treated as an object.

Additional Constructor Summary
def this (arg0 : String) : Integer
Method Summary
def byteValue : Byte
def compareTo (arg0 : Integer) : Int
def doubleValue : Double
def equals (arg0 : Any) : Boolean
def floatValue : Float
def hashCode : Int
def intValue : Int
def longValue : Long
def shortValue : Short
def toString : String
Methods inherited from AnyRef
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Additional Constructor Details
def this(arg0 : String) : Integer

Method Details
def byteValue : Byte
Overrides
Number.byteValue

def shortValue : Short
Overrides
Number.shortValue

def intValue : Int
Overrides
Number.intValue

def longValue : Long
Overrides
Number.longValue

def floatValue : Float
Overrides
Number.floatValue

def doubleValue : Double
Overrides
Number.doubleValue

def toString : String

def hashCode : Int

def equals(arg0 : Any) : Boolean

def compareTo(arg0 : Integer) : Int