Modifier and Type | Method and Description |
---|---|
static Operator.DescriptorComparison |
checkNumericCompatibility(String leftDeclaredDescriptor,
String rightDeclaredDescriptor,
String leftActualDescriptor,
String rightActualDescriptor)
Return an object that indicates whether the input descriptors are compatible.
|
public static Operator.DescriptorComparison checkNumericCompatibility(@Nullable String leftDeclaredDescriptor, @Nullable String rightDeclaredDescriptor, @Nullable String leftActualDescriptor, @Nullable String rightActualDescriptor)
A declared descriptor is what could statically be determined (e.g. from looking at the return value of a property accessor method) whilst an actual descriptor is the type of an actual object that was returned, which may differ.
For generic types with unbound type variables, the declared descriptor discovered may be 'Object' but from the actual descriptor it is possible to observe that the objects are really numeric values (e.g. ints).
leftDeclaredDescriptor
- the statically determinable left descriptorrightDeclaredDescriptor
- the statically determinable right descriptorleftActualDescriptor
- the dynamic/runtime left object descriptorrightActualDescriptor
- the dynamic/runtime right object descriptor