All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xhsun.guildwars2wrapper.model.v2.character.Character Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
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