Package | Description |
---|---|
student.testingsupport |
Modifier and Type | Method and Description |
---|---|
static ReflectionSupport.ParameterConversionCategory |
ReflectionSupport.canCoerceFromActualToFormal(Class<?> actual,
Class<?> formal)
Determine the type of method invocation conversion, if any, Java would
apply to convert from an actual argument of type
actual
into a formal parameter type formal , possibly including
"auto-boxing" or "auto-unboxing", widening primitive conversions, or
widening reference conversions, according to the rules of JLS Section
5.3. |
static ReflectionSupport.ParameterConversionCategory |
ReflectionSupport.ParameterConversionCategory.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReflectionSupport.ParameterConversionCategory[] |
ReflectionSupport.ParameterConversionCategory.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|