Uses of Class
com.mycompany.model.EventType

Packages that use EventType
com.mycompany.controller Contains JSF managed bean controller classes for the application. 
com.mycompany.model Contains JPA domain model classes and generated JPA Metamodel classes. 
com.mycompany.service Contains interfaces for all services in the application. 
com.mycompany.service.impl Contains CDI-managed service classes implemented as EJB3 stateless session beans. 
 

Uses of EventType in com.mycompany.controller
 

Methods in com.mycompany.controller that return EventType
 EventType SearchController.getEventType()
           
 EventType[] EventController.getEventTypes()
          This method returns an array of EventType enum objects.
 

Methods in com.mycompany.controller with parameters of type EventType
 void SearchController.setEventType(EventType eventType)
           
 

Uses of EventType in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type EventType
static javax.persistence.metamodel.SingularAttribute<Event,EventType> Event_.eventType
           
 

Methods in com.mycompany.model that return EventType
 EventType Event.getEventType()
           
static EventType EventType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EventType[] EventType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.mycompany.model with parameters of type EventType
 void Event.setEventType(EventType eventType)
           
 

Uses of EventType in com.mycompany.service
 

Methods in com.mycompany.service with parameters of type EventType
 java.util.List<Event> EventService.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)
          Finds a List of Event objects in a City and ProvinceState for a particular EventType and keyword.
 

Uses of EventType in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl with parameters of type EventType
 java.util.List<Event> EventServiceImpl.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)
          Finds a List of Event objects in a City and ProvinceState for a particular EventType and keyword.