package com.nicewuerfel.blockown; public enum Command { IGNORE("ignore"), SHOWOWNER("showowner"), IMPORT("import"), ADDFRIEND("addfriend"), REMFRIEND( "remfriend"), LOCK("lock"), UNLOCK("unlock"), PROTECT("protect"), UNPROTECT( "unprotect"), LIST("list"), OWN("own"), UNOWN( "unown"), UNPROTECTPLAYER("unprotectplayer"), UNOWNPLAYER( "unownplayer"), OWNING("owning"), OWNOTHER("ownother"); private final String command; Command(String command) { this.command = command; } @Override public String toString() { return command; } }