Uses of Class
jerklib.events.IRCEvent.Type

Packages that use IRCEvent.Type
jerklib Package contains classes for working with the IRC protocol and IRC servers. 
jerklib.events Package contains all the event interfaces. 
jerklib.events.impl Package contains all the event implementations 
 

Uses of IRCEvent.Type in jerklib
 

Methods in jerklib with parameters of type IRCEvent.Type
 void DefaultInternalEventHandler.addEventHandler(IRCEvent.Type type, IRCEventListener listener)
          Adds an IRCEventListener to handle a given event Type.
 IRCEventListener DefaultInternalEventHandler.getEventHandler(IRCEvent.Type type)
          Returns the event handler registerd to the Type given.
 void Session.onEvent(Task task, IRCEvent.Type... types)
          Add a task to be ran when any of the given Types of IRCEvents are received
 boolean DefaultInternalEventHandler.removeEventHandler(IRCEvent.Type type)
          Removes any internal IRCEventListeners registered to handle the Type passed in.
 

Uses of IRCEvent.Type in jerklib.events
 

Methods in jerklib.events that return IRCEvent.Type
 IRCEvent.Type IRCEvent.getType()
          Used to find out the exact type of event the IRCEvent object is.
static IRCEvent.Type IRCEvent.Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IRCEvent.Type[] IRCEvent.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of IRCEvent.Type in jerklib.events.impl
 

Methods in jerklib.events.impl that return IRCEvent.Type
 IRCEvent.Type WhowasEventImpl.getType()
           
 IRCEvent.Type PartEventImpl.getType()
           
 IRCEvent.Type ChannelListEventImpl.getType()
           
 IRCEvent.Type MotdEventImpl.getType()
           
 IRCEvent.Type NumericEventImpl.getType()
           
 IRCEvent.Type AwayEventImpl.getType()
           
 IRCEvent.Type ConnectionLostEventImpl.getType()
           
 IRCEvent.Type UnresolvedHostnameErrorEventImpl.getType()
           
 IRCEvent.Type JoinEventImpl.getType()
           
 IRCEvent.Type InviteEventImpl.getType()
          getType() is used to find out the exact type of event the IRCEvent object is.
 IRCEvent.Type WhoEventImpl.getType()
          Used to find out the exact type of event the IRCEvent object is.
 IRCEvent.Type NickChangeEventImpl.getType()
           
 IRCEvent.Type WhoisEventImpl.getType()
           
 IRCEvent.Type CtcpEventImpl.getType()
           
 IRCEvent.Type ConnectionCompleteEventImpl.getType()
           
 IRCEvent.Type JoinCompleteEventImpl.getType()
           
 IRCEvent.Type NickInUseEventImpl.getType()
           
 IRCEvent.Type MessageEventImpl.getType()
           
 IRCEvent.Type ModeEventImpl.getType()
           
 IRCEvent.Type QuitEventImpl.getType()
           
 IRCEvent.Type KickEventImpl.getType()
           
 IRCEvent.Type NoticeEventImpl.getType()
           
 IRCEvent.Type NickListEventImpl.getType()
           
 IRCEvent.Type TopicEventImpl.getType()
           
 IRCEvent.Type ServerVersionEventImpl.getType()
           
 IRCEvent.Type ServerInformationEventImpl.getType()
           
 

Constructors in jerklib.events.impl with parameters of type IRCEvent.Type
MessageEventImpl(Channel channel, String hostName, String message, String nick, String rawEventData, Session session, IRCEvent.Type type, String userName)