me.xhsun.guildwars2wrapper.model.v2.character.CharacterSkills 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.v2.Skill;
import java.util.List;
/**
* For more info on character skills API go here
* Model class for character skills level
*
* @see Skill
* @author xhsun
* @since 2017-06-07
*/
public class CharacterSkills {
private Skills skills;
public Utility getPve() {
return skills.pve;
}
public Utility getPvp() {
return skills.pvp;
}
public Utility getWvw() {
return skills.wvw;
}
public class Skills {
private Utility pve, pvp, wvw;
public Utility getPve() {
return pve;
}
public Utility getPvp() {
return pvp;
}
public Utility getWvw() {
return wvw;
}
}
public class Utility {
private int heal;
private List utilities;
private int elite;
public int getHeal() {
return heal;
}
public List getUtilities() {
return utilities;
}
public int getElite() {
return elite;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy