Package | Description |
---|---|
com.mingweisamuel.zyra |
Contains core elements of the Zyra library, such as
RiotApi and all of the endpoint
sets.com.mingweisamuel.zyra.util Contains general utilities used internally.com.mingweisamuel.zyra.enums Contains general static classes and enums useful for interacting with the
Riot API.The remaining sub-packages contain generated DTO classes returned by their respective endpoint set. |
com.mingweisamuel.zyra.entity |
Entity classes, high level representations of Riot API objects for ease of use.
All objects should be created via the EntityApi get* methods. |
Modifier and Type | Method and Description |
---|---|
Summoner |
SummonerV4Endpoints.getByAccountId(Region region,
String encryptedAccountId)
Get a summoner by account ID.
|
Summoner |
SummonerV4Endpoints.getByPUUID(Region region,
String encryptedPUUID)
Get a summoner by PUUID.
|
Summoner |
SummonerV4Endpoints.getBySummonerId(Region region,
String encryptedSummonerId)
Get a summoner by summoner ID.
|
Summoner |
SummonerV4Endpoints.getBySummonerName(Region region,
String summonerName)
Get a summoner by summoner name.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<Summoner> |
SummonerV4Endpoints.getByAccountIdAsync(Region region,
String encryptedAccountId)
Get a summoner by account ID.
|
CompletableFuture<Summoner> |
SummonerV4Endpoints.getByPUUIDAsync(Region region,
String encryptedPUUID)
Get a summoner by PUUID.
|
CompletableFuture<Summoner> |
SummonerV4Endpoints.getBySummonerIdAsync(Region region,
String encryptedSummonerId)
Get a summoner by summoner ID.
|
CompletableFuture<Summoner> |
SummonerV4Endpoints.getBySummonerNameAsync(Region region,
String summonerName)
Get a summoner by summoner name.
|
Modifier and Type | Method and Description |
---|---|
Summoner |
SummonerEntity.getSummonerInfo() |
Modifier and Type | Method and Description |
---|---|
CompletableFuture<Summoner> |
SummonerEntity.getSummonerInfoAsync() |
Modifier and Type | Method and Description |
---|---|
SummonerEntity |
EntityApi.getSummoner(Region region,
Summoner summoner)
Gets a summoner entity by a
Summoner instance. |
Copyright © 2019. All rights reserved.