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 public constructor with 2 argument are present 20 */ 21 public class Point2 { 22 private final Integer x; 23 private final Integer y; 24 getX()25 public Integer getX() { 26 return x; 27 } 28 getY()29 public Integer getY() { 30 return y; 31 } 32 Point2(Double x, Double y)33 public Point2(Double x, Double y) { 34 this.x = x.intValue(); 35 this.y = y.intValue(); 36 } 37 Point2(Integer x, Integer y)38 public Point2(Integer x, Integer y) { 39 this.x = x; 40 this.y = y; 41 } 42 43 @Override toString()44 public String toString() { 45 return "<Point2 x=" + String.valueOf(x) + " y=" + String.valueOf(y) + ">"; 46 } 47 } 48