当前位置: 首页>>代码示例>>Java>>正文


Java JsonNode.isNode方法代码示例

本文整理汇总了Java中argo.jdom.JsonNode.isNode方法的典型用法代码示例。如果您正苦于以下问题:Java JsonNode.isNode方法的具体用法?Java JsonNode.isNode怎么用?Java JsonNode.isNode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在argo.jdom.JsonNode的用法示例。


在下文中一共展示了JsonNode.isNode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: replaceChildren

import argo.jdom.JsonNode; //导入方法依赖的package包/类
/**
 * Replace a set of children in a JSON object.
 * @param parent the parent node
 * @param replacingChildren the map key: newNode to replace. Key must exist in parent node beforehand
 * @return an instance of JsonNode with all children in replacing children replaced.
 */
public static JsonNode replaceChildren(JsonNode parent, Map<String, JsonNode> replacingChildren) {
	if (parent == null) {
		return null;
	}
	List<JsonField> fields = new ArrayList<JsonField>();

	for (JsonField field : parent.getFieldList()) {
		String key = field.getName().getText();

		if (parent.isNode(key)) { // Fail safe
			if (replacingChildren.containsKey(key)) {
				fields.add(JsonNodeFactories.field(key, replacingChildren.get(key)));
			} else {
				fields.add(field);
			}
		}
	}

	return JsonNodeFactories.object(fields);
}
 
开发者ID:repeats,项目名称:Repeat,代码行数:27,代码来源:JSONUtility.java

示例2: extractSpecificConfig

import argo.jdom.JsonNode; //导入方法依赖的package包/类
@Override
protected boolean extractSpecificConfig(JsonNode node) {
	if (!super.extractSpecificConfig(node)) {
		return false;
	}

	if (node.isNode("executing_program") && !node.isNullNode("executing_program")) {
		setExecutingProgram(new File(node.getStringValue("executing_program")));
	}

	return true;
}
 
开发者ID:repeats,项目名称:Repeat,代码行数:13,代码来源:IPCClientService.java

示例3: extractSpecificConfig

import argo.jdom.JsonNode; //导入方法依赖的package包/类
@Override
protected boolean extractSpecificConfig(JsonNode node) {
	if (!super.extractSpecificConfig(node)) {
		return false;
	}

	if (node.isNode("scalaLibraryDirectory") && !node.isNullNode("scalaLibraryDirectory")) {
		scalaLibraryDirectory = new File(node.getStringValue("scalaLibraryDirectory"));
	} else {
		scalaLibraryDirectory = null;
	}

	return true;
}
 
开发者ID:repeats,项目名称:Repeat,代码行数:15,代码来源:ScalaIPCClientService.java

示例4: verifyReplyContent

import argo.jdom.JsonNode; //导入方法依赖的package包/类
protected boolean verifyReplyContent(JsonNode content) {
	return content.isStringValue("status") &&
			content.isNode("message");
}
 
开发者ID:repeats,项目名称:Repeat,代码行数:5,代码来源:AbstractMessageProcessor.java


注:本文中的argo.jdom.JsonNode.isNode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。