本文整理汇总了Java中org.projectfloodlight.openflow.types.TableId.getValue方法的典型用法代码示例。如果您正苦于以下问题:Java TableId.getValue方法的具体用法?Java TableId.getValue怎么用?Java TableId.getValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.projectfloodlight.openflow.types.TableId
的用法示例。
在下文中一共展示了TableId.getValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTableType
import org.projectfloodlight.openflow.types.TableId; //导入方法依赖的package包/类
@Override
public TableType getTableType(TableId tid) {
switch (tid.getValue()) {
case DELL_TABLE_IPV4_UNICAST:
return TableType.IP;
case DELL_TABLE_MPLS:
return TableType.MPLS;
case DELL_TABLE_ACL:
return TableType.ACL;
case DELL_TABLE_VLAN:
return TableType.VLAN;
case DELL_TABLE_TMAC:
return TableType.ETHER;
default:
log.error("Table type for Table id {} is not supported in the driver", tid);
return TableType.NONE;
}
}
示例2: setMaxTableForTableMissFlow
import org.projectfloodlight.openflow.types.TableId; //导入方法依赖的package包/类
@Override
public TableId setMaxTableForTableMissFlow(TableId max) {
if (max.getValue() >= nTables) {
maxTableToGetTableMissFlow = TableId.of(nTables - 1 < 0 ? 0 : nTables - 1);
} else {
maxTableToGetTableMissFlow = max;
}
return maxTableToGetTableMissFlow;
}