Package org.apache.lucene.search
Class FieldCache.CacheEntry
- java.lang.Object
-
- org.apache.lucene.search.FieldCache.CacheEntry
-
- Enclosing interface:
- FieldCache
public static final class FieldCache.CacheEntry extends Object
EXPERT: A unique Identifier/Description for each item in the FieldCache. Can be useful for logging/debugging.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
estimateSize()
Computes (and stores) the estimated size of the cache ValueClass<?>
getCacheType()
Object
getCustom()
String
getEstimatedSize()
The most recently estimated size of the value, null unless estimateSize has been called.String
getFieldName()
Object
getReaderKey()
Object
getValue()
String
toString()
-
-
-
Method Detail
-
getReaderKey
public Object getReaderKey()
-
getFieldName
public String getFieldName()
-
getCacheType
public Class<?> getCacheType()
-
getCustom
public Object getCustom()
-
getValue
public Object getValue()
-
estimateSize
public void estimateSize()
Computes (and stores) the estimated size of the cache Value- See Also:
getEstimatedSize()
-
getEstimatedSize
public String getEstimatedSize()
The most recently estimated size of the value, null unless estimateSize has been called.
-
-