java.lang

class Float

[source: java/lang/Float.scala]

final class Float
extends Number with Comparable

Class Float 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) : Float
def this (arg0 : Double) : Float
Method Summary
def byteValue : Byte
def compareTo (arg0 : Float) : Int
def doubleValue : Double
def equals (arg0 : Any) : Boolean
def floatValue : Float
def hashCode : Int
def intValue : Int
def isInfinite : Boolean
def isNaN : Boolean
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 : Double) : Float

def this(arg0 : String) : Float

Method Details
def isNaN : Boolean

def isInfinite : Boolean

def toString : String

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 hashCode : Int

def equals(arg0 : Any) : Boolean

def compareTo(arg0 : Float) : Int