Five more Equals/HashCode/StringBuilder replacements
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / State.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.core;
11
12 import javax.xml.bind.annotation.XmlElement;
13 import javax.xml.bind.annotation.XmlRootElement;
14
15 /**
16  * The class represents the State property of an Edge
17  *
18  *
19  */
20 @XmlRootElement
21 @SuppressWarnings("serial")
22 public class State extends Property {
23     @XmlElement
24     private short stateValue;
25
26     public static final short EDGE_DOWN = 0;
27     public static final short EDGE_UP = 1;
28     public static final short EDGE_UNK = 0x7fff;
29     public static final String StatePropName = "state";
30
31     /*
32      * Private constructor used for JAXB mapping
33      */
34     private State() {
35         super(StatePropName);
36         this.stateValue = EDGE_UNK;
37     }
38
39     public State(short state) {
40         super(StatePropName);
41         this.stateValue = state;
42     }
43
44     public State clone() {
45         return new State(this.stateValue);
46     }
47
48     public short getValue() {
49         return this.stateValue;
50     }
51
52     @Override
53     public int hashCode() {
54         final int prime = 31;
55         int result = super.hashCode();
56         result = prime * result + stateValue;
57         return result;
58     }
59
60     @Override
61     public boolean equals(Object obj) {
62         if (this == obj)
63             return true;
64         if (!super.equals(obj))
65             return false;
66         if (getClass() != obj.getClass())
67             return false;
68         State other = (State) obj;
69         if (stateValue != other.stateValue)
70             return false;
71         return true;
72     }
73
74     @Override
75     public String toString() {
76         return "State[" + stateValue + "]";
77     }
78 }