Create Long from long value
public class Main {
public static void main(String[] argv) throws Exception {
Long refLong = new Long(123L);
long l = refLong.longValue();
}
}
public class Main {
public static void main(String[] argv) throws Exception {
Long refLong = new Long(123L);
long l = refLong.longValue();
}
}