blob: 52bec7e3daa79c36bd3db2863909da4bfb911d15 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
2// Copyright (c) 2011, 2012 Open Networking Foundation
3// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
4// This library was generated by the LoxiGen Compiler.
5// See the file LICENSE.txt which should have been included in the source distribution
6
7// Automatically generated by LOXI from template const_serializer.java
8// Do not modify
9
10package org.projectfloodlight.openflow.protocol.ver12;
11
12import org.projectfloodlight.openflow.protocol.*;
13import org.projectfloodlight.openflow.protocol.action.*;
14import org.projectfloodlight.openflow.protocol.actionid.*;
15import org.projectfloodlight.openflow.protocol.bsntlv.*;
16import org.projectfloodlight.openflow.protocol.errormsg.*;
17import org.projectfloodlight.openflow.protocol.meterband.*;
18import org.projectfloodlight.openflow.protocol.instruction.*;
19import org.projectfloodlight.openflow.protocol.instructionid.*;
20import org.projectfloodlight.openflow.protocol.match.*;
21import org.projectfloodlight.openflow.protocol.oxm.*;
22import org.projectfloodlight.openflow.protocol.queueprop.*;
23import org.projectfloodlight.openflow.types.*;
24import org.projectfloodlight.openflow.util.*;
25import org.projectfloodlight.openflow.exceptions.*;
26import org.projectfloodlight.openflow.protocol.OFSwitchConfigFailedCode;
27import org.jboss.netty.buffer.ChannelBuffer;
28import com.google.common.hash.PrimitiveSink;
29
30public class OFSwitchConfigFailedCodeSerializerVer12 {
31
32 public final static short BAD_FLAGS_VAL = (short) 0x0;
33 public final static short BAD_LEN_VAL = (short) 0x1;
34 public final static short EPERM_VAL = (short) 0x2;
35
36 public static OFSwitchConfigFailedCode readFrom(ChannelBuffer bb) throws OFParseError {
37 try {
38 return ofWireValue(bb.readShort());
39 } catch (IllegalArgumentException e) {
40 throw new OFParseError(e);
41 }
42 }
43
44 public static void writeTo(ChannelBuffer bb, OFSwitchConfigFailedCode e) {
45 bb.writeShort(toWireValue(e));
46 }
47
48 public static void putTo(OFSwitchConfigFailedCode e, PrimitiveSink sink) {
49 sink.putShort(toWireValue(e));
50 }
51
52 public static OFSwitchConfigFailedCode ofWireValue(short val) {
53 switch(val) {
54 case BAD_FLAGS_VAL:
55 return OFSwitchConfigFailedCode.BAD_FLAGS;
56 case BAD_LEN_VAL:
57 return OFSwitchConfigFailedCode.BAD_LEN;
58 case EPERM_VAL:
59 return OFSwitchConfigFailedCode.EPERM;
60 default:
61 throw new IllegalArgumentException("Illegal wire value for type OFSwitchConfigFailedCode in version 1.2: " + val);
62 }
63 }
64
65
66 public static short toWireValue(OFSwitchConfigFailedCode e) {
67 switch(e) {
68 case BAD_FLAGS:
69 return BAD_FLAGS_VAL;
70 case BAD_LEN:
71 return BAD_LEN_VAL;
72 case EPERM:
73 return EPERM_VAL;
74 default:
75 throw new IllegalArgumentException("Illegal enum value for type OFSwitchConfigFailedCode in version 1.2: " + e);
76 }
77 }
78
79}