Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static boolean isReal(Class<?> type) {
return type.equals(float.class) || type.equals(double.class) || type.equals(Float.class)
|| type.equals(Double.class);
}
}