Uses of Class
com.cliffblaster.game.api.event.Event.Type

Packages that use Event.Type
com.cliffblaster.game.api   
com.cliffblaster.game.api.event   
 

Uses of Event.Type in com.cliffblaster.game.api
 

Methods in com.cliffblaster.game.api that return Event.Type
 Event.Type RegisteredEvent.getType()
           
 

Methods in com.cliffblaster.game.api with parameters of type Event.Type
 RegisteredEvent JavaPlugin.registerEvent(Event.Type type, EventListener listener, Event.Priority priority)
          Registers an event that the plug-in will listen to and returns a RegisteredEvent object.
 RegisteredEvent PluginManager.registerEvent(Event.Type type, EventListener listener, JavaPlugin plugin, Event.Priority priority)
          Registers an event that the plug-in will listen to and returns a RegisteredEvent object.
 

Uses of Event.Type in com.cliffblaster.game.api.event
 

Fields in com.cliffblaster.game.api.event declared as Event.Type
protected  Event.Type Event.evtType
           
 

Methods in com.cliffblaster.game.api.event that return Event.Type
 Event.Type Event.getType()
           
static Event.Type Event.Type.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Event.Type[] Event.Type.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Constructors in com.cliffblaster.game.api.event with parameters of type Event.Type
PlayerEvent(ServerHandler handler, Event.Type type)
           
ServerEvent(Event.Type type)