java.lang.Long.shortValue() java.lang.Long.rotateRight() java.lang.Long.signum() java.lang.Long.shortValue() package com.codingdict; import java.lang.*; public class LongDemo { public static void main(String[] args) { Long obj = new Long(327); // returns the value of this Long as a short short s = obj.shortValue(); System.out.println("Value of s = " + s); } } java.lang.Long.rotateRight() java.lang.Long.signum()