本文整理了Java中org.onosproject.yangutils.datamodel.YangEnum.getValue()
方法的一些代码示例,展示了YangEnum.getValue()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangEnum.getValue()
方法的具体详情如下:
包路径:org.onosproject.yangutils.datamodel.YangEnum
类名称:YangEnum
方法名:getValue
[英]Returns the value.
[中]返回值。
代码示例来源:origin: org.onosproject/onos-yang-datamodel
@Override
public int compareTo(YangEnum otherEnum) {
if (namedValue.equals(otherEnum.getNamedValue())) {
return 0;
}
return new Integer(value).compareTo(otherEnum.getValue());
}
}
代码示例来源:origin: org.onosproject/onos-yang-utils-parser
YangEnumeration yangEnumeration = (YangEnumeration) tmpNode;
for (YangEnum curEnum : yangEnumeration.getEnumSet()) {
if (value == curEnum.getValue()) {
listener.getParsedDataStack().push(enumNode);
return false;
代码示例来源:origin: org.onosproject/onos-yang-utils-parser
if (curEnum.getValue() == Integer.MAX_VALUE) {
ParserException parserException = new ParserException("YANG file error : "
+ "An enum value MUST be specified for enum substatements following the one"
parserException.setCharPosition(ctx.getStart().getCharPositionInLine());
throw parserException;
} else if (maxValue <= curEnum.getValue()) {
maxValue = curEnum.getValue();
isValuePresent = true;
内容来源于网络,如有侵权,请联系作者删除!