Object
7576777879808182838485
if (type.equals(bigDecimalType)) { return bigDecimalType; } // Anything else is an invalid type return helper.objectType(); } /** * {@inheritDoc} */
102103104105106107108109110111112
// Only a resolvable type will be added to the list if (type != unresolvableType) { // Non-numeric type cannot be added if (!helper.isNumericType(type)) { type = helper.objectType(); } types.add(type); } }
7475767778798081828384
if (type == null) { type = anotherType; } // Two types are not the same, then the type is Object else if (!type.equals(anotherType)) { return helper.objectType(); } } if (type == null) { type = unknownType;
6768697071727374757677
96979899100101102103104105106
6869707172737475767778