Lines Matching refs:Class
19 * Takes a Class Variable for primitive Datatype or its Wrapper-Classes and a String.
20 * Then an instance of the Class (for primitive Datatypes an instance of its Wrapper-Class)
27 public static Object getCastedObjectFromStringValue(String lexicalValue, Class type) {
64 * Takes a String and returns a Class Object represented by the value of the String. This is
65 * intended for use with Class.getDeclaredMethods()
68 * @return Class Object specified by strClass
69 * @see java.lang.Class#getDeclaredMethod(java.lang.String, java.lang.Class[])
71 public static Class getClassFromString(String strClass) {
72 Class javaClass = null;
93 javaClass = Class.forName(strClass);
129 public static Hashtable inferFieldFromGetter(Class claz) {