com.feilong.lib.ognl.internal.Entry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
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' + ']';
}
}