mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
add a bunch of classes to classpath and flesh out a few existing ones
This commit is contained in:
@ -7,6 +7,26 @@ public final class Double {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public byte byteValue() {
|
||||
return (byte) value;
|
||||
}
|
||||
|
||||
public short shortValue() {
|
||||
return (short) value;
|
||||
}
|
||||
|
||||
public int intValue() {
|
||||
return (int) value;
|
||||
}
|
||||
|
||||
public long longValue() {
|
||||
return (long) value;
|
||||
}
|
||||
|
||||
public float floatValue() {
|
||||
return (float) value;
|
||||
}
|
||||
|
||||
public double doubleValue() {
|
||||
return value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user