Modifier and Type | Method and Description |
---|---|
java.util.List<Event> |
Event.create()
This function connects to JSoup and fetches the requested values from the Google spreadsheet.
|
java.util.List<Event> |
Event.filterBy(java.util.List<Event> x,
java.lang.String y)
This method searches a List<Event> for all Events that
fall under the given group.
|
java.util.List<java.util.List<Event>> |
Event.filterByAll(java.util.List<Event> x)
This method filters a List<Event> for all
unique group names and returns a List<List<Event>>
which can be used to print all the events per category.
|
static java.util.List<Event> |
Event.onlyPublic(java.util.List<Event> x)
Method that returns only public events.
|
Modifier and Type | Method and Description |
---|---|
int |
Event.compareTo(Event x)
This method overrides the compareTo function of Comparable
to provide sort capabilites to a List of Events.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Event> |
Event.filterBy(java.util.List<Event> x,
java.lang.String y)
This method searches a List<Event> for all Events that
fall under the given group.
|
java.util.List<java.util.List<Event>> |
Event.filterByAll(java.util.List<Event> x)
This method filters a List<Event> for all
unique group names and returns a List<List<Event>>
which can be used to print all the events per category.
|
java.util.List<java.lang.String> |
Event.getAllUniqueGroups(java.util.List<Event> x)
This method filters a List<Event>
to pull out the unique group names.
|
static java.util.List<Event> |
Event.onlyPublic(java.util.List<Event> x)
Method that returns only public events.
|
void |
Event.sortEvents(java.util.List<Event> x)
This is a void method that applies the sort algorithm to a List<Event>.
|