Interface CacheEntry<ObjectType>
- Type Parameters:
 ObjectType- the type of the objects to be cached via a cache entry
- All Known Implementing Classes:
 CacheEntryBase,CardinalityCacheEntry
public interface CacheEntry<ObjectType>
- 
Method Summary
Modifier and TypeMethodDescriptionlongReturns the time at which this cache entry was created.Returns the object that is cached via this cache entry. 
- 
Method Details
- 
getObject
ObjectType getObject()Returns the object that is cached via this cache entry. - 
createdAt
long createdAt()Returns the time at which this cache entry was created. 
 -