summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/State.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/State.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/State.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/State.java b/EssentialsUpdate/src/f00f/net/irc/martyr/State.java
new file mode 100644
index 000000000..e1e60ce9d
--- /dev/null
+++ b/EssentialsUpdate/src/f00f/net/irc/martyr/State.java
@@ -0,0 +1,31 @@
+package f00f.net.irc.martyr;
+
+/**
+ * A simple container for state constants. The state constants here
+ * are used to specify what state the protocol is in. The State
+ * object is both the state representitive and the state container.
+ * This was done so that state could be typesafe and valuesafe.
+ *
+ */
+public class State
+{
+
+ public static final State UNCONNECTED = new State("unconnected");
+ public static final State UNREGISTERED = new State("unregistered");
+ public static final State REGISTERED = new State("registered");
+ public static final State UNKNOWN = new State("unknown/any");
+
+ private String stateName;
+
+ private State( String str )
+ {
+ stateName = str;
+ }
+
+ public String toString()
+ {
+ return stateName;
+ }
+
+}
+