in scala/runtime
class BoxedNumber

abstract class BoxedNumber()
extends Object
Implementing classes or objects:
class BoxedInt()
class BoxedChar()
class BoxedByte()
class BoxedDouble()
class BoxedShort()
class BoxedFloat()
class BoxedLong()

Method Summary
abstract def byteValue(): Byte
abstract def charValue(): Char
abstract def doubleValue(): Double
abstract def floatValue(): Float
abstract def intValue(): Int
abstract def longValue(): Long
abstract def shortValue(): Short

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Method Detail

byteValue

  abstract def byteValue(): Byte

shortValue

  abstract def shortValue(): Short

charValue

  abstract def charValue(): Char

intValue

  abstract def intValue(): Int

longValue

  abstract def longValue(): Long

floatValue

  abstract def floatValue(): Float

doubleValue

  abstract def doubleValue(): Double