Interface MoveExtensionTreatment
-
- All Superinterfaces:
org.onosproject.net.flow.Extension,org.onosproject.net.flow.instructions.ExtensionTreatment
- All Known Implementing Classes:
DefaultMoveExtensionTreatment
public interface MoveExtensionTreatment extends org.onosproject.net.flow.instructions.ExtensionTreatmentThe abstraction of Move Treatment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intdst()Returns DST field of move extension action.intdstOffset()Returns DST_OFS field of move extension action.intnBits()Returns N_BITS field of move extension action.intsrc()Returns SRC field of move extension action.intsrcOffset()Returns SRC_OFS field of move extension action.
-
-
-
Method Detail
-
srcOffset
int srcOffset()
Returns SRC_OFS field of move extension action.- Returns:
- SRC_OFS
-
dstOffset
int dstOffset()
Returns DST_OFS field of move extension action.- Returns:
- DST_OFS
-
src
int src()
Returns SRC field of move extension action.- Returns:
- SRC
-
dst
int dst()
Returns DST field of move extension action.- Returns:
- DST
-
nBits
int nBits()
Returns N_BITS field of move extension action.- Returns:
- N_BITS
-
-