1 /** 2 * Copyright (c) 2008, http://www.snakeyaml.org 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.yaml.snakeyaml.immutable; 17 18 /** 19 * Two constructors with 1 argument. These immutable objects are not supported. 20 */ 21 public class Code2 { 22 private final Integer code; 23 Code2(Integer name)24 public Code2(Integer name) { 25 this.code = name; 26 } 27 Code2(String name)28 public Code2(String name) { 29 this.code = new Integer(name); 30 } 31 getCode()32 public Integer getCode() { 33 return code; 34 } 35 36 @Override equals(Object obj)37 public boolean equals(Object obj) { 38 if (obj instanceof Code2) { 39 Code2 code = (Code2) obj; 40 return code.equals(code.code); 41 } else { 42 return false; 43 } 44 } 45 46 @Override hashCode()47 public int hashCode() { 48 return code.hashCode(); 49 } 50 51 @Override toString()52 public String toString() { 53 return "<Code2 code=" + code + ">"; 54 } 55 } 56