me.xhsun.guildwars2wrapper.model.v2.character.Character Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw2wrapper Show documentation
Show all versions of gw2wrapper Show documentation
Guild Wars 2 API wrapper for Android
package me.xhsun.guildwars2wrapper.model.v2.character;
import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableInt;
import java.util.List;
/**
* For more info on character overview API go here
* Model class for character overview
*
* @author xhsun
* @since 2017-06-07
*/
public class Character extends CharacterCore {
private List crafting;
private List backstory;
private List wvw_abilities;
private CharacterSpecialization.Specialization specializations;
private CharacterSkills.Skills skills;
private List equipment;
private List recipes;
private PvPEquipment equipment_pvp;
private List training;
private List bags;
public List getCrafting() {
return crafting;
}
public List getBackStory() {
return backstory;
}
public List getWvWAbilities() {
return wvw_abilities;
}
public CharacterSpecialization.Specialization getSpecializations() {
return specializations;
}
public CharacterSkills.Skills getSkills() {
return skills;
}
public List getEquipment() {
return equipment;
}
public List getRecipes() {
return recipes;
}
public PvPEquipment getEquipmentPvP() {
return equipment_pvp;
}
public List getTraining() {
return training;
}
public List getBags() {
return bags;
}
public class WvWAbility extends IdentifiableInt {
private int rank;
public int getRank() {
return rank;
}
}
public class PvPEquipment {
private int amulet, rune;
private List sigils;
public int getAmulet() {
return amulet;
}
public int getRune() {
return rune;
}
public List getSigils() {
return sigils;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy