本文整理汇总了Java中jodd.json.JsonContext.pushValue方法的典型用法代码示例。如果您正苦于以下问题:Java JsonContext.pushValue方法的具体用法?Java JsonContext.pushValue怎么用?Java JsonContext.pushValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jodd.json.JsonContext
的用法示例。
在下文中一共展示了JsonContext.pushValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: serializeMap
import jodd.json.JsonContext; //导入方法依赖的package包/类
private static boolean serializeMap(final JsonContext jsonContext, Map<?, ?> map) {
if (jsonContext.pushValue(map)) {
// prevent circular dependencies
return false;
}
jsonContext.writeOpenObject();
boolean notfirst = false;
for (Map.Entry<?, ?> entry : map.entrySet()) {
final Object value = entry.getValue();
if (value == null) {
continue;
}
final Object key = entry.getKey();
jsonContext.pushName(key != null ? key.toString() : null, notfirst);
jsonContext.serialize(value);
if (!notfirst && jsonContext.isNamePopped()) {
notfirst = true;
}
}
jsonContext.writeCloseObject();
jsonContext.popValue();
return true;
}
示例2: serializeObject
import jodd.json.JsonContext; //导入方法依赖的package包/类
private static boolean serializeObject(final JsonContext jsonContext, final Object source) {
if (jsonContext.pushValue(source)) {
// prevent circular dependencies
return false;
}
InternalJsonContext internalJsonContext = (InternalJsonContext) jsonContext;
internalJsonContext.writeOpenObject();
final PropertyDescriptor[] propertyDescriptors = ClassIntrospector.lookup(source.getClass()).getAllPropertyDescriptors();
boolean notfirst = false;
for (PropertyDescriptor propertyDescriptor : propertyDescriptors) {
final String propertyName = propertyDescriptor.getName();
if (internalJsonContext.isExcluded(source, propertyName)) {
continue;
}
final Getter getter = propertyDescriptor.getGetter(false);
if (getter == null) {
continue;
}
final Object value;
try {
value = getter.invokeGetter(source);
} catch (InvocationTargetException | IllegalAccessException ex) {
throw new JsonException(ex);
}
if (value == null) {
continue;
}
internalJsonContext.pushName(propertyName, notfirst);
internalJsonContext.serialize(value);
if (!notfirst && internalJsonContext.isNamePopped()) {
notfirst = true;
}
}
internalJsonContext.writeCloseObject();
jsonContext.popValue();
return true;
}
示例3: serialize
import jodd.json.JsonContext; //导入方法依赖的package包/类
/**
* Detects circular dependencies and pushes value as current
* type context.
*/
public final boolean serialize(JsonContext jsonContext, T value) {
if (jsonContext.pushValue(value)) {
// prevent circular dependencies
return false;
}
serializeValue(jsonContext, value);
jsonContext.popValue();
return true;
}