ae58c6b8ec8facbc03de2c098e62df712b750b3e
[jSite2.git] / src / net / pterodactylus / util / beans / StringComparer.java
1 /*
2  * jSite2 - StringComparer.java
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.util.beans;
21
22 /**
23  * Compares different objects. Can be used to detect change in property values.
24  * 
25  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
26  * @version $Id$
27  */
28 public class StringComparer {
29
30         /**
31          * Compares the two strings and returns whether they are equal. This method
32          * takes <code>null</code> into account as a valid value for a string.
33          * 
34          * @param first
35          *            The first string
36          * @param second
37          *            The second string
38          * @return <code>true</code> if the two strings are equal,
39          *         <code>false</code> otherwise
40          */
41         public static boolean equal(String first, String second) {
42                 return ((first != null) && (second == null)) || ((first == null) && (second != null)) || ((first != null) && !first.equals(second));
43         }
44
45 }