本文整理汇总了Java中org.projectfloodlight.openflow.protocol.OFTableFeaturePropTableSyncFrom类的典型用法代码示例。如果您正苦于以下问题:Java OFTableFeaturePropTableSyncFrom类的具体用法?Java OFTableFeaturePropTableSyncFrom怎么用?Java OFTableFeaturePropTableSyncFrom使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OFTableFeaturePropTableSyncFrom类属于org.projectfloodlight.openflow.protocol包,在下文中一共展示了OFTableFeaturePropTableSyncFrom类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: TableFeatures
import org.projectfloodlight.openflow.protocol.OFTableFeaturePropTableSyncFrom; //导入依赖的package包/类
private TableFeatures(OFTableFeatures tf) {
/*
* First, get the properties.
*/
List<OFTableFeatureProp> properties = tf.getProperties();
for (OFTableFeatureProp p : properties) {
OFTableFeaturePropType pt = getTableFeaturePropType(p);
switch (pt) {
case APPLY_ACTIONS:
aa = (OFTableFeaturePropApplyActions) p;
break;
case APPLY_ACTIONS_MISS:
aam = (OFTableFeaturePropApplyActionsMiss) p;
break;
case APPLY_SETFIELD:
asf = (OFTableFeaturePropApplySetfield) p;
break;
case APPLY_SETFIELD_MISS:
asfm = (OFTableFeaturePropApplySetfieldMiss) p;
break;
case EXPERIMENTER:
e = (OFTableFeaturePropExperimenter) p;
break;
case EXPERIMENTER_MISS:
em = (OFTableFeaturePropExperimenterMiss) p;
break;
case INSTRUCTIONS:
i = (OFTableFeaturePropInstructions) p;
break;
case INSTRUCTIONS_MISS:
im = (OFTableFeaturePropInstructionsMiss) p;
break;
case MATCH:
m = (OFTableFeaturePropMatch) p;
break;
case NEXT_TABLES:
nt = (OFTableFeaturePropNextTables) p;
break;
case NEXT_TABLES_MISS:
ntm = (OFTableFeaturePropNextTablesMiss) p;
break;
case TABLE_SYNC_FROM:
tsf = (OFTableFeaturePropTableSyncFrom) p;
break;
case WILDCARDS:
w = (OFTableFeaturePropWildcards) p;
break;
case WRITE_ACTIONS:
wa = (OFTableFeaturePropWriteActions) p;
break;
case WRITE_ACTIONS_MISS:
wam = (OFTableFeaturePropWriteActionsMiss) p;
break;
case WRITE_SETFIELD:
wsf = (OFTableFeaturePropWriteSetfield) p;
break;
case WRITE_SETFIELD_MISS:
wsfm = (OFTableFeaturePropWriteSetfieldMiss) p;
break;
default:
throw new UnsupportedOperationException("OFTableFeaturePropType " + pt.toString() + " not accounted for in " + this.getClass().getCanonicalName());
}
}
/*
* Next, get the other info e.g. name, ID, etc.
*/
config = tf.getConfig();
maxEntries = tf.getMaxEntries();
metadataMatch = tf.getMetadataMatch();
metadataWrite = tf.getMetadataWrite();
tableId = tf.getTableId();
tableName = tf.getName();
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:75,代码来源:TableFeatures.java
示例2: getPropTableSyncFrom
import org.projectfloodlight.openflow.protocol.OFTableFeaturePropTableSyncFrom; //导入依赖的package包/类
public OFTableFeaturePropTableSyncFrom getPropTableSyncFrom() {
return tsf;
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:4,代码来源:TableFeatures.java
示例3: TableFeatures
import org.projectfloodlight.openflow.protocol.OFTableFeaturePropTableSyncFrom; //导入依赖的package包/类
private TableFeatures(OFTableFeatures tf) {
/*
* First, get the properties.
*/
List<OFTableFeatureProp> properties = tf.getProperties();
for (OFTableFeatureProp p : properties) {
OFTableFeaturePropType pt = getTableFeaturePropType(p);
switch (pt) {
case APPLY_ACTIONS:
aa = (OFTableFeaturePropApplyActions) p;
break;
case APPLY_ACTIONS_MISS:
aam = (OFTableFeaturePropApplyActionsMiss) p;
break;
case APPLY_SETFIELD:
asf = (OFTableFeaturePropApplySetfield) p;
break;
case APPLY_SETFIELD_MISS:
asfm = (OFTableFeaturePropApplySetfieldMiss) p;
break;
case EXPERIMENTER:
e = (OFTableFeaturePropExperimenter) p;
break;
case EXPERIMENTER_MISS:
em = (OFTableFeaturePropExperimenterMiss) p;
break;
case INSTRUCTIONS:
i = (OFTableFeaturePropInstructions) p;
break;
case INSTRUCTIONS_MISS:
im = (OFTableFeaturePropInstructionsMiss) p;
break;
case MATCH:
m = (OFTableFeaturePropMatch) p;
break;
case NEXT_TABLES:
nt = (OFTableFeaturePropNextTables) p;
break;
case NEXT_TABLES_MISS:
ntm = (OFTableFeaturePropNextTablesMiss) p;
break;
case TABLE_SYNC_FROM:
tsf = (OFTableFeaturePropTableSyncFrom) p;
break;
case WILDCARDS:
w = (OFTableFeaturePropWildcards) p;
break;
case WRITE_ACTIONS:
wa = (OFTableFeaturePropWriteActions) p;
break;
case WRITE_ACTIONS_MISS:
wam = (OFTableFeaturePropWriteActionsMiss) p;
break;
case WRITE_SETFIELD:
wsf = (OFTableFeaturePropWriteSetfield) p;
break;
case WRITE_SETFIELD_MISS:
wsfm = (OFTableFeaturePropWriteSetfieldMiss) p;
break;
default:
throw new UnsupportedOperationException("OFTableFeaturePropType " + pt.toString() + " not accounted for in " + this.getClass().getCanonicalName());
}
}
/*
* Next, get the other info e.g. name, ID, etc.
*/
config = tf.getConfig();
maxEntries = tf.getMaxEntries();
metadataMatch = tf.getMetadataMatch();
metadataWrite = tf.getMetadataWrite();
tableId = tf.getTableId();
tableName = tf.getName();
}
开发者ID:zhenshengcai,项目名称:floodlight-hardware,代码行数:75,代码来源:TableFeatures.java
注:本文中的org.projectfloodlight.openflow.protocol.OFTableFeaturePropTableSyncFrom类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论