org.projectfloodlight.openflow.protocol.OFPortStatsPropExperimenterIntel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openflowj Show documentation
Show all versions of openflowj Show documentation
OpenFlowJ API supporting OpenFlow versions 1.0 through 1.5.1, generated by LoxiGen
The newest version!
// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
// Copyright (c) 2011, 2012 Open Networking Foundation
// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
// This library was generated by the LoxiGen Compiler.
// See the file LICENSE.txt which should have been included in the source distribution
// Automatically generated by LOXI from template of_interface.java
// Do not modify
package org.projectfloodlight.openflow.protocol;
import org.projectfloodlight.openflow.protocol.*;
import org.projectfloodlight.openflow.protocol.action.*;
import org.projectfloodlight.openflow.protocol.actionid.*;
import org.projectfloodlight.openflow.protocol.bsntlv.*;
import org.projectfloodlight.openflow.protocol.errormsg.*;
import org.projectfloodlight.openflow.protocol.meterband.*;
import org.projectfloodlight.openflow.protocol.instruction.*;
import org.projectfloodlight.openflow.protocol.instructionid.*;
import org.projectfloodlight.openflow.protocol.match.*;
import org.projectfloodlight.openflow.protocol.stat.*;
import org.projectfloodlight.openflow.protocol.oxm.*;
import org.projectfloodlight.openflow.protocol.oxs.*;
import org.projectfloodlight.openflow.protocol.queueprop.*;
import org.projectfloodlight.openflow.types.*;
import org.projectfloodlight.openflow.util.*;
import org.projectfloodlight.openflow.exceptions.*;
import io.netty.buffer.ByteBuf;
public interface OFPortStatsPropExperimenterIntel extends OFObject, OFPortStatsPropExperimenter {
int getType();
long getExperimenter();
long getExpType();
U64 getRx1To64Packets();
U64 getRx65To127Packets();
U64 getRx128To255Packets();
U64 getRx256To511Packets();
U64 getRx512To1023Packets();
U64 getRx1024To1522Packets();
U64 getRx1523ToMaxPackets();
U64 getTx1To64Packets();
U64 getTx65To127Packets();
U64 getTx128To255Packets();
U64 getTx256To511Packets();
U64 getTx512To1023Packets();
U64 getTx1024To1522Packets();
U64 getTx1523ToMaxPackets();
U64 getTxMulticastPackets();
U64 getRxBroadcastPackets();
U64 getTxBroadcastPackets();
U64 getRxUndersizedErrors();
U64 getRxOversizeErrors();
U64 getRxFragmentedErrors();
U64 getRxJabberErrors();
OFVersion getVersion();
void writeTo(ByteBuf channelBuffer);
Builder createBuilder();
public interface Builder extends OFPortStatsPropExperimenter.Builder {
OFPortStatsPropExperimenterIntel build();
int getType();
long getExperimenter();
long getExpType();
Builder setExpType(long expType);
U64 getRx1To64Packets();
Builder setRx1To64Packets(U64 rx1To64Packets);
U64 getRx65To127Packets();
Builder setRx65To127Packets(U64 rx65To127Packets);
U64 getRx128To255Packets();
Builder setRx128To255Packets(U64 rx128To255Packets);
U64 getRx256To511Packets();
Builder setRx256To511Packets(U64 rx256To511Packets);
U64 getRx512To1023Packets();
Builder setRx512To1023Packets(U64 rx512To1023Packets);
U64 getRx1024To1522Packets();
Builder setRx1024To1522Packets(U64 rx1024To1522Packets);
U64 getRx1523ToMaxPackets();
Builder setRx1523ToMaxPackets(U64 rx1523ToMaxPackets);
U64 getTx1To64Packets();
Builder setTx1To64Packets(U64 tx1To64Packets);
U64 getTx65To127Packets();
Builder setTx65To127Packets(U64 tx65To127Packets);
U64 getTx128To255Packets();
Builder setTx128To255Packets(U64 tx128To255Packets);
U64 getTx256To511Packets();
Builder setTx256To511Packets(U64 tx256To511Packets);
U64 getTx512To1023Packets();
Builder setTx512To1023Packets(U64 tx512To1023Packets);
U64 getTx1024To1522Packets();
Builder setTx1024To1522Packets(U64 tx1024To1522Packets);
U64 getTx1523ToMaxPackets();
Builder setTx1523ToMaxPackets(U64 tx1523ToMaxPackets);
U64 getTxMulticastPackets();
Builder setTxMulticastPackets(U64 txMulticastPackets);
U64 getRxBroadcastPackets();
Builder setRxBroadcastPackets(U64 rxBroadcastPackets);
U64 getTxBroadcastPackets();
Builder setTxBroadcastPackets(U64 txBroadcastPackets);
U64 getRxUndersizedErrors();
Builder setRxUndersizedErrors(U64 rxUndersizedErrors);
U64 getRxOversizeErrors();
Builder setRxOversizeErrors(U64 rxOversizeErrors);
U64 getRxFragmentedErrors();
Builder setRxFragmentedErrors(U64 rxFragmentedErrors);
U64 getRxJabberErrors();
Builder setRxJabberErrors(U64 rxJabberErrors);
OFVersion getVersion();
}
}