本文整理汇总了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;
}
}
示例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;
}
}
示例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;
}
}
示例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;
}
}
示例5: importResult
import jdk.nashorn.api.scripting.ScriptUtils; //导入方法依赖的package包/类
@SuppressWarnings("unused")
private static Object importResult(final Object arg) {
return ScriptUtils.unwrap(arg);
}