本文整理汇总了Java中com.intellij.util.ReflectionUtil.collectFields方法的典型用法代码示例。如果您正苦于以下问题:Java ReflectionUtil.collectFields方法的具体用法?Java ReflectionUtil.collectFields怎么用?Java ReflectionUtil.collectFields使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.util.ReflectionUtil
的用法示例。
在下文中一共展示了ReflectionUtil.collectFields方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doConvert
import com.intellij.util.ReflectionUtil; //导入方法依赖的package包/类
private static void doConvert(Object object, String prefix, Map<String, String> result) throws IllegalAccessException {
for (Field each : ReflectionUtil.collectFields(object.getClass())) {
Class<?> type = each.getType();
if (shouldSkip(type)) continue;
each.setAccessible(true);
Object value = each.get(object);
if (value != null) {
String name = prefix + each.getName();
String sValue = String.valueOf(value);
if (!isNativeToString(sValue, value)) {
result.put(name, sValue);
}
Package pack = type.getPackage();
if (pack != null && Model.class.getPackage().getName().equals(pack.getName())) {
doConvert(value, name + ".", result);
}
}
}
}
示例2: create
import com.intellij.util.ReflectionUtil; //导入方法依赖的package包/类
@Override
public <T> TypeAdapter<T> create(Gson gson, final TypeToken<T> type) {
if (type.getRawType().getAnnotation(RestModel.class) == null) {
return null;
}
final TypeAdapter<T> defaultAdapter = gson.getDelegateAdapter(this, type);
return new TypeAdapter<T>() {
@Override
public void write(JsonWriter out, T value) throws IOException {
defaultAdapter.write(out, value);
}
@Override
public T read(JsonReader in) throws IOException {
T stub = defaultAdapter.read(in);
for (Field field : ReflectionUtil.collectFields(type.getRawType())) {
if (field.getAnnotation(Mandatory.class) != null) {
try {
field.setAccessible(true);
if (field.get(stub) == null) {
throw new IllegalArgumentException(String.format("Field '%s' is mandatory, but missing in response", field.getName()));
}
}
catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
return stub;
}
};
}