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

ognl.internal.Entry Maven / Gradle / Ivy

package 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;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy