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

io.github.biezhi.anima.core.ResultKey Maven / Gradle / Ivy

package io.github.biezhi.anima.core;

/**
 * @author biezhi
 * @date 2018/3/16
 */
public class ResultKey {

    private Object key;

    public ResultKey(Object key) {
        this.key = key;
    }

    public Integer asInt() {
        if (key instanceof Long) {
            return asLong().intValue();
        }
        return (Integer) key;
    }

    public Long asLong() {
        return (Long) key;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy