Example usage for io.netty.buffer ByteBuf readShort

List of usage examples for io.netty.buffer ByteBuf readShort

Introduction

In this page you can find the example usage for io.netty.buffer ByteBuf readShort.

Prototype

public abstract short readShort();

Source Link

Document

Gets a 16-bit short integer at the current readerIndex and increases the readerIndex by 2 in this buffer.

Usage

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFActionTypeSerializerVer10.java

public static OFActionType readFrom(ByteBuf bb) throws OFParseError {
    try {//from  w w w  .  j a  va 2 s .co m
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFBadActionCodeSerializerVer10.java

public static OFBadActionCode readFrom(ByteBuf bb) throws OFParseError {
    try {//  ww w.  java  2  s.c om
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFBadRequestCodeSerializerVer10.java

public static OFBadRequestCode readFrom(ByteBuf bb) throws OFParseError {
    try {//from  www .j  a v a  2  s .  co m
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFBsnVportQInQUntaggedSerializerVer10.java

public static OFBsnVportQInQUntagged readFrom(ByteBuf bb) throws OFParseError {
    try {/* w  w  w  . j av  a2s.co  m*/
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFConfigFlagsSerializerVer10.java

public static Set<OFConfigFlags> readFrom(ByteBuf bb) throws OFParseError {
    try {//from   w  ww .  j  av  a2s .  c om
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFErrorTypeSerializerVer10.java

public static OFErrorType readFrom(ByteBuf bb) throws OFParseError {
    try {//from   w w  w  .j a  v a  2s.  c  om
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFFlowModCommandSerializerVer10.java

public static OFFlowModCommand readFrom(ByteBuf bb) throws OFParseError {
    try {//from w  w w  .j av a2 s  .  c om
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFFlowModFailedCodeSerializerVer10.java

public static OFFlowModFailedCode readFrom(ByteBuf bb) throws OFParseError {
    try {/*w w  w  .  j  a  va2s  .  c o m*/
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFFlowModFlagsSerializerVer10.java

public static Set<OFFlowModFlags> readFrom(ByteBuf bb) throws OFParseError {
    try {//from  w  w  w. jav a  2s.co m
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}

From source file:com.ltln.modules.openflow.core.protocol.ver10.OFHelloFailedCodeSerializerVer10.java

public static OFHelloFailedCode readFrom(ByteBuf bb) throws OFParseError {
    try {//from  ww  w.j av a  2 s  . c  o m
        return ofWireValue(bb.readShort());
    } catch (IllegalArgumentException e) {
        throw new OFParseError(e);
    }
}