summaryrefslogtreecommitdiff
path: root/src/library/scala/runtime/BoxedFloat.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/runtime/BoxedFloat.java')
-rw-r--r--src/library/scala/runtime/BoxedFloat.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/library/scala/runtime/BoxedFloat.java b/src/library/scala/runtime/BoxedFloat.java
new file mode 100644
index 0000000000..630ee6bece
--- /dev/null
+++ b/src/library/scala/runtime/BoxedFloat.java
@@ -0,0 +1,49 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2005, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+package scala.runtime;
+
+public class BoxedFloat extends BoxedNumber
+ implements java.io.Serializable
+{
+
+ public static BoxedFloat box(float value) {
+ return new BoxedFloat(value);
+ }
+
+ public final float value;
+
+ private BoxedFloat(float value) { this.value = value; }
+
+ public final byte byteValue() { return (byte)value; }
+ public final short shortValue() { return (short)value; }
+ public final char charValue() { return (char)value; }
+ public final int intValue() { return (int)value; }
+ public final long longValue() { return (long)value; }
+ public final float floatValue() { return (float)value; }
+ public final double doubleValue() { return (double)value; }
+
+ public final boolean $eq$eq(java.lang.Object other) {
+ return equals(other);
+ }
+
+ public final boolean $bang$eq(java.lang.Object other) {
+ return !equals(other);
+ }
+
+ public boolean equals(java.lang.Object other) {
+ return other instanceof BoxedNumber && value == ((BoxedNumber) other).floatValue();
+ }
+
+ public int hashCode() {
+ return java.lang.Float.floatToIntBits(value);
+ }
+
+ public String toString() {
+ return String.valueOf(value);
+ }
+}