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

com.feilong.lib.ognl.internal.ClassCache 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;

import com.feilong.lib.ognl.ClassCacheInspector;

/**
 * This is a highly specialized map for storing values keyed by Class objects.
 */
public interface ClassCache{

    void setClassInspector(ClassCacheInspector inspector);

    void clear();

    int getSize();

    Object get(Class key);

    Object put(Class key,Object value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy