Package xbird.util.cache

Examples of xbird.util.cache.CacheEntry


    }

    @SuppressWarnings("unchecked")
    public boolean remove(Object key, Object value) {
        ensureNotNull(key, value);
        CacheEntry probe = new CacheEntry(key, value);
        return _delegate.remove(key, probe);
    }
View Full Code Here

TOP

Related Classes of xbird.util.cache.CacheEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.