mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
add misc methods to classpath
This commit is contained in:
@ -9,6 +9,10 @@ public final class Long extends Number {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public Long(String s) {
|
||||
this.value = parseLong(s);
|
||||
}
|
||||
|
||||
public static Long valueOf(long value) {
|
||||
return new Long(value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user