本文整理匯總了Java中org.onosproject.net.NshContextHeader.of方法的典型用法代碼示例。如果您正苦於以下問題:Java NshContextHeader.of方法的具體用法?Java NshContextHeader.of怎麽用?Java NshContextHeader.of使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.onosproject.net.NshContextHeader
的用法示例。
在下文中一共展示了NshContextHeader.of方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: decode
import org.onosproject.net.NshContextHeader; //導入方法依賴的package包/類
@Override
public NiciraSetNshContextHeader decode(ObjectNode json, CodecContext context) {
if (json == null || !json.isObject()) {
return null;
}
// parse nsh context header
int contextHeaderInt = nullIsIllegal(json.get(NSH_CONTEXT_HEADER),
NSH_CONTEXT_HEADER + MISSING_MEMBER_MESSAGE).asInt();
NshContextHeader contextHeader = NshContextHeader.of(contextHeaderInt);
// parse type
int extensionTypeInt = nullIsIllegal(json.get(TYPE),
TYPE + MISSING_MEMBER_MESSAGE).asInt();
ExtensionTreatmentType type = new ExtensionTreatmentType(extensionTypeInt);
return new NiciraSetNshContextHeader(contextHeader, type);
}
示例2: testConstruction
import org.onosproject.net.NshContextHeader; //導入方法依賴的package包/類
/**
* Checks the construction of a NiciraSetNshSi object.
*/
@Test
public void testConstruction() {
final NiciraSetNshContextHeader niciraSetNshCh = new NiciraSetNshContextHeader(NshContextHeader.of(10),
ExtensionTreatmentType.
ExtensionTreatmentTypes.
NICIRA_SET_NSH_CH1.type());
assertThat(niciraSetNshCh, is(notNullValue()));
assertThat(niciraSetNshCh.nshCh().nshContextHeader(), is(10));
assertThat(niciraSetNshCh.type(), is(ExtensionTreatmentType.
ExtensionTreatmentTypes.
NICIRA_SET_NSH_CH1.type()));
}
示例3: NiciraSetNshContextHeader
import org.onosproject.net.NshContextHeader; //導入方法依賴的package包/類
/**
* Creates a new set nsh context header instruction.
*
* @param type extension treatment type
*/
NiciraSetNshContextHeader(ExtensionTreatmentType type) {
this.nshCh = NshContextHeader.of(0);
this.type = type;
}