Searched defs:theString (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DClassUtil.java776 private static Object InstantiateObject(final String theString) argument
783 result = InstantiateNumber(theString);
787 result = theString;
940 @param theString the string for a String constructor
943 public static <T> T InstantiateObject(final Class<T> theClass, final String theString) argument
957 theString
986 @param theString String representation of the number
989 private static Object InstantiateNumber(final String theString) argument
994 if (theString.indexOf('.') >= 0)
996 result = InstantiateObject(Double.class, theString);
1021 InstantiateFromString(final Class<?> theClass, final String theString) argument
[all...]

Completed in 50 milliseconds