本文整理汇总了Java中org.onosproject.ovsdb.rfc.schema.type.AtomicColumnType.max方法的典型用法代码示例。如果您正苦于以下问题:Java AtomicColumnType.max方法的具体用法?Java AtomicColumnType.max怎么用?Java AtomicColumnType.max使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.onosproject.ovsdb.rfc.schema.type.AtomicColumnType
的用法示例。
在下文中一共展示了AtomicColumnType.max方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getValueFromAtoType
import org.onosproject.ovsdb.rfc.schema.type.AtomicColumnType; //导入方法依赖的package包/类
/**
* Convert AtomicColumnType JsonNode into OvsdbSet value.
* @param json AtomicColumnType JsonNode
* @param atoType AtomicColumnType entity
* @return Object OvsdbSet or the value of JsonNode
*/
private static Object getValueFromAtoType(JsonNode json, AtomicColumnType atoType) {
BaseType baseType = atoType.baseType();
// If "min" or "max" is not specified, If "min" is not 1 or "max" is not
// 1, or both, and "value" is not specified, the type is a set of scalar
// type "key". Refer to RFC 7047, Section 3.2 <type>.
if (atoType.min() != atoType.max()) {
Set set = Sets.newHashSet();
if (json.isArray()) {
if (json.size() == 2) {
if (json.get(0).isTextual() && "set".equals(json.get(0).asText())) {
for (JsonNode node : json.get(1)) {
set.add(transToValue(node, baseType));
}
} else {
set.add(transToValue(json, baseType));
}
}
} else {
set.add(transToValue(json, baseType));
}
return OvsdbSet.ovsdbSet(set);
} else {
return transToValue(json, baseType);
}
}