Class CommandWords
java.lang.Object
CommandWords
public class CommandWords
- extends Object
This class is part of the "World of Zuul" application.
"World of Zuul" is a very simple, text based adventure game.
This class holds an enumeration of all command words known to the game.
It is used to recognise commands as they are typed in.
- Version:
- 2006.03.30
- Author:
- Michael Kolling and David J. Barnes
Constructor Summary |
CommandWords()
Constructor - initialise the command words. |
Method Summary |
boolean |
isCommand(String aString)
Check whether a given String is a valid command word. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CommandWords
public CommandWords()
- Constructor - initialise the command words.
isCommand
public boolean isCommand(String aString)
- Check whether a given String is a valid command word.
- Returns:
- true if a given string is a valid command,
false if it isn't.