このコードフラグメントを実行すると、どちらの側も使用されません。
if (Boolean.class.isAssignableFrom(boolean.class)) {
uLog.error("Boolean is => boolean");
}
if (boolean.class.isAssignableFrom(Boolean.class)) {
uLog.error("boolean is <= Boolean");
}
具体的には、リフレクションを使用してパラメータタイプをテストしようとしています。
Type[] pType = m.getGenericParameterTypes();
ブールパラメータの適切なテストを理解できません。