org.dc.riot.lol.rx.model.staticdata.ItemTreeDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lol-api-rxjava Show documentation
Show all versions of lol-api-rxjava Show documentation
Service library for League of Legends API
package org.dc.riot.lol.rx.model.staticdata;
/**
* This object contains item tree data.
*
* @author Dc
* @since 1.0.0
*/
public class ItemTreeDto {
private static long COUNT = 0;
public static long getInstanceCount() {
return COUNT;
}
private String header;
private String[] tags;
public ItemTreeDto() {
COUNT++;
}
/**
* @return Header.
*/
public String getHeader() {
return header;
}
/**
* @return Tags.
*/
public String[] getTags() {
if (tags == null) {
return new String[0];
}
return tags;
}
}