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

me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.StatSelectable Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2.util.itemDetail;

import me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.subobject.InfixUpgrade;
import me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.subobject.InfusionSlot;

import java.util.List;

/**
 * Method container class for all item detail that have a stat
 *
 * @author xhsun
 * @since 2017-06-07
 */
class StatSelectable extends ItemDetail {
	public List getInfusionSlots() {
		return infusion_slots;
	}

	public InfixUpgrade getInfixUpgrade() {
		return infix_upgrade;
	}

	public int getSuffixID() {
		return suffix_item_id;
	}

	public String getSecSuffixID() {
		return secondary_suffix_item_id;
	}

	public List getStatChoice() {
		return stat_choices;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy