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

org.dc.riot.lol.rx.model.staticdata.ItemDto Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.dc.riot.lol.rx.model.staticdata;

import java.util.HashMap;
import java.util.Map;

/**
 * This object contains item data.

* * Inheritance * Discussion * * @author Dc * @since 1.0.0 * @see BasicDataDto */ public class ItemDto extends BasicDataDto { private static long COUNT = 0; public static long getInstanceCount() { return COUNT; } private Map effect; public ItemDto() { super(true); COUNT++; } /** * Implementation note: might be null. * * @return Effects. */ public Map getEffect() { if (effect == null) { return new HashMap<>(); } return effect; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy