| Package | Description |
|---|---|
| com.exsoloscript.challonge.gson | |
| com.exsoloscript.challonge.handler.call | |
| com.exsoloscript.challonge.handler.retrofit |
| Modifier and Type | Method and Description |
|---|---|
Participant |
ParticipantAdapter.deserialize(com.google.gson.JsonElement jsonElement,
Type type,
com.google.gson.JsonDeserializationContext jsonDeserializationContext) |
| Modifier and Type | Method and Description |
|---|---|
List<Participant> |
ParticipantListAdapter.deserialize(com.google.gson.JsonElement jsonElement,
Type type,
com.google.gson.JsonDeserializationContext jsonDeserializationContext) |
| Modifier and Type | Method and Description |
|---|---|
ChallongeApiCall<Participant> |
ParticipantHandler.addParticipant(String tournament,
ParticipantQuery participant) |
ChallongeApiCall<List<Participant>> |
ParticipantHandler.bulkAddParticipants(String tournament,
List<ParticipantQuery> participants) |
ChallongeApiCall<Participant> |
ParticipantHandler.checkInParticipant(String tournament,
int participantId) |
ChallongeApiCall<Participant> |
ParticipantHandler.deleteParticipant(String tournament,
int participantId) |
ChallongeApiCall<Participant> |
ParticipantHandler.getParticipant(String tournament,
int participantId,
boolean includeMatches) |
ChallongeApiCall<List<Participant>> |
ParticipantHandler.getParticipants(String tournament) |
ChallongeApiCall<List<Participant>> |
ParticipantHandler.randomizeParticipants(String tournament) |
ChallongeApiCall<Participant> |
ParticipantHandler.undoParticipantCheckIn(String tournament,
int participantId) |
ChallongeApiCall<Participant> |
ParticipantHandler.updateParticipant(String tournament,
int participantId,
ParticipantQuery participant) |
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<Participant> |
RetrofitParticipantHandler.addParticipant(String tournament,
ParticipantQuery participant)
Add a participant to a tournament (up until it is started).
|
retrofit2.Call<List<Participant>> |
RetrofitParticipantHandler.bulkAddParticipants(String tournament,
List<ParticipantQuery> participants)
Bulk add participants to a tournament (up until it is started).
|
retrofit2.Call<Participant> |
RetrofitParticipantHandler.checkInParticipant(String tournament,
int participantId)
Checks a participant in, setting checked_in_at to the current time.
|
retrofit2.Call<Participant> |
RetrofitParticipantHandler.deleteParticipant(String tournament,
int participantId)
If the tournament has not started, delete a participant, automatically filling in the abandoned seed number.
|
retrofit2.Call<Participant> |
RetrofitParticipantHandler.getParticipant(String tournament,
int participantId,
int includeMatches)
Retrieve a single participant record for a tournament.
|
retrofit2.Call<List<Participant>> |
RetrofitParticipantHandler.getParticipants(String tournament)
Retrieve a tournament's participant list.
|
retrofit2.Call<List<Participant>> |
RetrofitParticipantHandler.randomizeParticipants(String tournament)
Randomize seeds among participants.
|
retrofit2.Call<Participant> |
RetrofitParticipantHandler.undoParticipantCheckIn(String tournament,
int participantId)
Marks a participant as having not checked in, setting checked_in_at to nil.
|
retrofit2.Call<Participant> |
RetrofitParticipantHandler.updateParticipant(String tournament,
int participantId,
ParticipantQuery participant)
Update the attributes of a tournament participant.
|
Copyright © 2016. All rights reserved.