/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2010-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.features.poller.remote.gwt.client.utils; import java.util.ArrayList; import java.util.Set; /** * <p>CompareToBuilder class.</p> * * @author ranger * @version $Id: $ * @since 1.8.1 */ public class CompareToBuilder { private int comparison = 0; /** * <p>append</p> * * @param a a {@link java.lang.Object} object. * @param b a {@link java.lang.Object} object. * @return a {@link org.opennms.features.poller.remote.gwt.client.utils.CompareToBuilder} object. */ @SuppressWarnings("unchecked") public CompareToBuilder append(Object a, Object b) { if (comparison != 0) return this; if (a == b) return this; if (a == null) { comparison = -1; } else if (b == null) { comparison = 1; } else { if (a instanceof Set<?>) { Object[] aL = new ArrayList<Object>((Set<?>)a).toArray(); Object[] bL = new ArrayList<Object>((Set<?>)b).toArray(); append(aL, bL); } if (a.getClass().isArray()) { append((Object[])a, (Object[])b); } else { comparison = ((Comparable<Object>)a).compareTo(b); } } return this; } /** * <p>append</p> * * @param a an array of {@link java.lang.Object} objects. * @param b an array of {@link java.lang.Object} objects. * @return a {@link org.opennms.features.poller.remote.gwt.client.utils.CompareToBuilder} object. */ public CompareToBuilder append(Object[] a, Object[] b) { if (comparison != 0) return this; if (a == b) return this; if (a == null) { comparison = -1; } else if (b == null) { comparison = 1; } else { if (a.length != b.length) { comparison = (a.length < b.length) ? -1 : +1; return this; } for (int i = 0; i < a.length && comparison == 0; i++) { append(a[i], b[i]); } } return this; } /** * <p>toComparison</p> * * @return a int. */ public int toComparison() { return comparison; } }