add hasField(String)
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 9 Apr 2008 17:22:56 +0000 (17:22 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 9 Apr 2008 17:22:56 +0000 (17:22 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@672 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/util/fcp/FcpMessage.java

index cb0c068..6782868 100644 (file)
@@ -87,6 +87,18 @@ public class FcpMessage implements Iterable<String> {
        }
 
        /**
+        * Checks whether this message has a field with the given name.
+        * 
+        * @param field
+        *            The name of the field to check for
+        * @return <code>true</code> if the message has a field with the given
+        *         name, <code>false</code> otherwise
+        */
+       public boolean hasField(String field) {
+               return fields.containsKey(field);
+       }
+
+       /**
         * Sets the field with the given name to the given value. If the field
         * already exists in this message it is overwritten.
         *