private boolean isCompatibleType()

in src/main/java/org/apache/commons/dbutils/BeanProcessor.java [197:200]


    private boolean isCompatibleType(final Object value, final Class<?> type) {
        // Do object check first, then primitives
        return value == null || type.isInstance(value) || matchesPrimitive(type, value.getClass());
    }