org.projectfloodlight.openflow.protocol.stat.StatField 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!
package org.projectfloodlight.openflow.protocol.stat;
import org.projectfloodlight.openflow.types.OFValueType;
import org.projectfloodlight.openflow.types.U32;
import org.projectfloodlight.openflow.types.U64;
public class StatField> {
private final String name;
public final StatFields id;
private StatField(final String name, final StatFields id) {
this.name = name;
this.id = id;
}
public final static StatField DURATION =
new StatField("of_duration", StatFields.DURATION);
public final static StatField IDLE_TIME =
new StatField("of_idle_time", StatFields.IDLE_TIME);
public final static StatField FLOW_COUNT =
new StatField("of_flow_count", StatFields.FLOW_COUNT);
public final static StatField PACKET_COUNT =
new StatField("of_packet_count", StatFields.PACKET_COUNT);
public final static StatField BYTE_COUNT =
new StatField("of_byte_count", StatFields.BYTE_COUNT);
public String getName() {
return name;
}
}