me.xhsun.guildwars2wrapper.model.v2.guild.Guild 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.guild;
import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableInt;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableStr;
import java.util.List;
/**
* For more info on guild API go here
* Model class for guild
*
* @author xhsun
* @since 2017-06-19
*/
public class Guild extends NameableStr {
public enum EmblemFlag {FlipBackgroundHorizontal, FlipBackgroundVertical}
private int level, aetherium;
private String motd, tag;
private long influence, favor;
private Emblem emblem;
public int getLevel() {
return level;
}
public int getAetherium() {
return aetherium;
}
public String getMotd() {
return motd;
}
public String getTag() {
return tag;
}
public long getInfluence() {
return influence;
}
public long getFavor() {
return favor;
}
public Emblem getEmblem() {
return emblem;
}
public class Emblem {
private EmblemDetail background, foreground;
private List flags;
public EmblemDetail getBackground() {
return background;
}
public EmblemDetail getForeground() {
return foreground;
}
public List getFlags() {
return flags;
}
}
public class EmblemDetail extends IdentifiableInt {
private List colors;
public List getColors() {
return colors;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy