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


Java ScriptUtils.unwrap方法代码示例

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


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

示例1: toMicronode

import jdk.nashorn.api.scripting.ScriptUtils; //导入方法依赖的package包/类
/**
 * Convert the given value into a micronode.
 *
 * @param value
 *            Value to be converted
 * @return Micronode object or null if the value could not be converted
 */
public Object toMicronode(Object value) {
	if (isMicronode(value)) {
		return ScriptUtils.unwrap(value);
	} else if (isJSArray(value)) {
		return getJSArray(value).stream().findFirst().filter(o -> isMicronode(o)).map(o -> ScriptUtils.unwrap(o))
				.orElse(null);
	} else {
		return null;
	}
}
 
开发者ID:gentics,项目名称:mesh,代码行数:18,代码来源:TypeConverter.java

示例2: toMicronodeList

import jdk.nashorn.api.scripting.ScriptUtils; //导入方法依赖的package包/类
/**
 * Convert the given value into a list of micronodes.
 *
 * @param value
 *            Value to be converted
 * @return List of micronodes or null if the value could not be converted
 */
public Object[] toMicronodeList(Object value) {
	if (isMicronode(value)) {
		return new Object[] { ScriptUtils.unwrap(value) };
	} else if (isJSArray(value) && getJSArray(value).stream().anyMatch(o -> isMicronode(o))) {
		List<Object> list = getJSArray(value).stream().map(e -> toMicronode(e)).filter(s -> s != null)
				.collect(Collectors.toList());
		return list.toArray(new Object[list.size()]);
	} else {
		return null;
	}
}
 
开发者ID:gentics,项目名称:mesh,代码行数:19,代码来源:TypeConverter.java

示例3: toNode

import jdk.nashorn.api.scripting.ScriptUtils; //导入方法依赖的package包/类
/**
 * Convert the given value into a node.
 *
 * @param value
 *            Value to be converted
 * @return Node or null if the value could not be converted
 */
public Object toNode(Object value) {
	if (isNode(value)) {
		return ScriptUtils.unwrap(value);
	} else if (isJSArray(value)) {
		return getJSArray(value).stream().findFirst().filter(o -> isNode(o)).map(o -> ScriptUtils.unwrap(o))
				.orElse(null);
	} else {
		return null;
	}
}
 
开发者ID:gentics,项目名称:mesh,代码行数:18,代码来源:TypeConverter.java

示例4: toNodeList

import jdk.nashorn.api.scripting.ScriptUtils; //导入方法依赖的package包/类
/**
 * Convert the given value into a list of nodes.
 *
 * @param value
 *            Value to be converted
 * @return Array of nodes or null if the value could not be converted
 */
public Object[] toNodeList(Object value) {
	if (isNode(value)) {
		return new Object[] { ScriptUtils.unwrap(value) };
	} else if (isJSArray(value) && getJSArray(value).stream().anyMatch(o -> isNode(o))) {
		List<Object> list = getJSArray(value).stream().map(e -> toNode(e)).filter(s -> s != null)
				.collect(Collectors.toList());
		return list.toArray(new Object[list.size()]);
	} else {
		return null;
	}
}
 
开发者ID:gentics,项目名称:mesh,代码行数:19,代码来源:TypeConverter.java

示例5: importResult

import jdk.nashorn.api.scripting.ScriptUtils; //导入方法依赖的package包/类
@SuppressWarnings("unused")
private static Object importResult(final Object arg) {
    return ScriptUtils.unwrap(arg);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:NashornBeansLinker.java


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