001/* ===========================================================
002 * JFreeChart : a free chart library for the Java(tm) platform
003 * ===========================================================
004 *
005 * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors.
006 *
007 * Project Info:  http://www.jfree.org/jfreechart/index.html
008 *
009 * This library is free software; you can redistribute it and/or modify it
010 * under the terms of the GNU Lesser General Public License as published by
011 * the Free Software Foundation; either version 2.1 of the License, or
012 * (at your option) any later version.
013 *
014 * This library is distributed in the hope that it will be useful, but
015 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
016 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
017 * License for more details.
018 *
019 * You should have received a copy of the GNU Lesser General Public
020 * License along with this library; if not, write to the Free Software
021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
022 * USA.
023 *
024 * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 
025 * Other names may be trademarks of their respective owners.]
026 *
027 * -----------------
028 * AxisLocation.java
029 * -----------------
030 * (C) Copyright 2003-2013, by Object Refinery Limited and Contributors.
031 *
032 * Original Author:  David Gilbert (for Object Refinery Limited);
033 * Contributor(s):   Nick Guenther;
034 *
035 * Changes:
036 * --------
037 * 02-May-2003 : Version 1 (DG);
038 * 03-Jul-2003 : Added isTopOrBottom() and isLeftOrRight() methods (DG);
039 * 13-Aug-2003 : Fixed readResolve() bug (id=788202) (DG);
040 * 24-Mar-2004 : Added static getOpposite() method (DG);
041 * ------------- JFREECHART 1.0.x ---------------------------------------------
042 * 22-Mar-2007 : Added getOpposite() method, suggested by Nick Guenther (DG);
043 * 02-Jul-2013 : Use ParamChecks (DG);
044 *
045 */
046
047package org.jfree.chart.axis;
048
049import java.io.ObjectStreamException;
050import java.io.Serializable;
051import org.jfree.chart.util.ParamChecks;
052
053/**
054 * Used to indicate the location of an axis on a 2D plot, prior to knowing the
055 * orientation of the plot.
056 */
057public final class AxisLocation implements Serializable {
058
059    /** For serialization. */
060    private static final long serialVersionUID = -3276922179323563410L;
061
062    /** Axis at the top or left. */
063    public static final AxisLocation TOP_OR_LEFT = new AxisLocation(
064            "AxisLocation.TOP_OR_LEFT");
065
066    /** Axis at the top or right. */
067    public static final AxisLocation TOP_OR_RIGHT = new AxisLocation(
068            "AxisLocation.TOP_OR_RIGHT");
069
070    /** Axis at the bottom or left. */
071    public static final AxisLocation BOTTOM_OR_LEFT = new AxisLocation(
072            "AxisLocation.BOTTOM_OR_LEFT");
073
074    /** Axis at the bottom or right. */
075    public static final AxisLocation BOTTOM_OR_RIGHT = new AxisLocation(
076            "AxisLocation.BOTTOM_OR_RIGHT");
077
078    /** The name. */
079    private String name;
080
081    /**
082     * Private constructor.
083     *
084     * @param name  the name.
085     */
086    private AxisLocation(String name) {
087        this.name = name;
088    }
089
090    /**
091     * Returns the location that is opposite to this location.
092     *
093     * @return The opposite location.
094     *
095     * @since 1.0.5
096     */
097    public AxisLocation getOpposite() {
098        return getOpposite(this);
099    }
100
101    /**
102     * Returns a string representing the object.
103     *
104     * @return The string.
105     */
106    @Override
107    public String toString() {
108        return this.name;
109    }
110
111    /**
112     * Returns <code>true</code> if this object is equal to the specified
113     * object, and <code>false</code> otherwise.
114     *
115     * @param obj  the other object (<code>null</code> permitted).
116     *
117     * @return A boolean.
118     */
119    @Override
120    public boolean equals(Object obj) {
121        if (this == obj) {
122            return true;
123        }
124        if (!(obj instanceof AxisLocation)) {
125            return false;
126        }
127        AxisLocation location = (AxisLocation) obj;
128        if (!this.name.equals(location.toString())) {
129            return false;
130        }
131        return true;
132    }
133
134    /**
135     * Returns a hash code for this instance.
136     * 
137     * @return A hash code.
138     */
139    @Override
140    public int hashCode() {
141        int hash = 5;
142        hash = 83 * hash + this.name.hashCode();
143        return hash;
144    }
145
146    /**
147     * Returns the location that is opposite to the supplied location.
148     *
149     * @param location  the location (<code>null</code> not permitted).
150     *
151     * @return The opposite location.
152     */
153    public static AxisLocation getOpposite(AxisLocation location) {
154        ParamChecks.nullNotPermitted(location, "location");
155        AxisLocation result = null;
156        if (location == AxisLocation.TOP_OR_LEFT) {
157            result = AxisLocation.BOTTOM_OR_RIGHT;
158        }
159        else if (location == AxisLocation.TOP_OR_RIGHT) {
160            result = AxisLocation.BOTTOM_OR_LEFT;
161        }
162        else if (location == AxisLocation.BOTTOM_OR_LEFT) {
163            result = AxisLocation.TOP_OR_RIGHT;
164        }
165        else if (location == AxisLocation.BOTTOM_OR_RIGHT) {
166            result = AxisLocation.TOP_OR_LEFT;
167        }
168        else {
169            throw new IllegalStateException("AxisLocation not recognised.");
170        }
171        return result;
172    }
173
174    /**
175     * Ensures that serialization returns the unique instances.
176     *
177     * @return The object.
178     *
179     * @throws ObjectStreamException if there is a problem.
180     */
181    private Object readResolve() throws ObjectStreamException {
182        if (this.equals(AxisLocation.TOP_OR_RIGHT)) {
183            return AxisLocation.TOP_OR_RIGHT;
184        }
185        else if (this.equals(AxisLocation.BOTTOM_OR_RIGHT)) {
186            return AxisLocation.BOTTOM_OR_RIGHT;
187        }
188        else if (this.equals(AxisLocation.TOP_OR_LEFT)) {
189            return AxisLocation.TOP_OR_LEFT;
190        }
191        else if (this.equals(AxisLocation.BOTTOM_OR_LEFT)) {
192            return AxisLocation.BOTTOM_OR_LEFT;
193        }
194        return null;
195    }
196
197}