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

com.feilong.lib.ognl.internal.Entry Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
package com.feilong.lib.ognl.internal;

/**
 * Used by {@link ClassCacheImpl} to store entries in the cache.
 */
class Entry{

    Entry  next;

    Class  key;

    Object value;

    public Entry(Class key, Object value){
        this.key = key;
        this.value = value;
    }

    @Override
    public String toString(){
        return "Entry[" + "next=" + next + '\n' + ", key=" + key + '\n' + ", value=" + value + '\n' + ']';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy