mx4j.tools.adaptor.http
public class CommandProcessorUtil extends Object
Version: $Revision: 1.3 $
Method Summary | |
---|---|
protected static boolean | canCreateParameterValue(String parameterType)
Checks if the given type is primitive of can be initialized from String. This is done by trying to load the class and checking if there is a public String only constructor. |
static Comparator | createClassComparator() |
static Comparator | createConstructorComparator() |
static Comparator | createObjectInstanceComparator() |
static Comparator | createObjectNameComparator() |
protected static Object | createParameterValue(String parameterType, String parameterValue)
Creates a parameter object of the given type containing a given value.
|
Parameters: parameterType Indicates the type of the parameter, for instance java.lang.String
Returns: true if the type is primitive or String initializable
Throws: Thrown in case there is a data conversion error
UNKNOWN: Log the exception
Parameters: parameterType Indicates the type of the parameter, for instance java.lang.String parameterValue The value of the parameter as a String
Returns: an object of parameterType type and value parameterValue or null if the type is unknown
Throws: Thrown in case there is a data conversion error