me.xhsun.guildwars2wrapper.model.v2.character.CharacterEquipment 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.Color;
import me.xhsun.guildwars2wrapper.model.v2.util.Inventory;
import java.util.List;
/**
* For more info on character equipment API go here
* Model class for character equipment
*
* @author xhsun
* @since 2017-06-07
*/
public class CharacterEquipment {
public enum Slot {
HelmAquatic, Backpack, Coat, Boots, Gloves, Helm, Leggings, Shoulders,
Accessory1, Accessory2, Ring1, Ring2, Amulet,
WeaponAquaticA, WeaponAquaticB,
WeaponA1, WeaponA2, WeaponB1, WeaponB2,
Sickle, Axe, Pick
}
private List equipment;
public List getEquipment() {
return equipment;
}
public class Equipment extends Inventory {
private Slot slot;
private List dyes;
public Slot getSlot() {
return slot;
}
/**
* @return list of {@link Color#id}
*/
public List getDyes() {
return dyes;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy