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

me.xhsun.guildwars2wrapper.model.util.itemDetail.subobject.InfusionSlot Maven / Gradle / Ivy

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

import me.xhsun.guildwars2wrapper.model.util.itemDetail.ItemDetail;

import java.util.List;

/**
 * For more info on Infusion slots API go here
* Infusion slots subobject model class * * @author xhsun * @since 2017-02-10 */ public class InfusionSlot { private List flags; private int item_id; public List getFlags() { return flags; } public int getID() { return item_id; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; InfusionSlot that = (InfusionSlot) o; return item_id == that.item_id && (flags != null ? flags.equals(that.flags) : that.flags == null); } @Override public int hashCode() { int result = flags != null ? flags.hashCode() : 0; result = 31 * result + item_id; return result; } @Override public String toString() { return "InfusionSlot{" + "flags=" + flags + ", item_id=" + item_id + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy