Long.TYPE has the following syntax.
public static final Class <Long> TYPE
In the following code shows how to use Long.TYPE field.
// www . j a v a 2s .co m public class Main { public static void main(String[] args) { System.out.println("TYPE = " + Long.TYPE); } }
The code above generates the following result.