Uses of Class
org.apache.lucene.search.function.FieldCacheSource
-
Packages that use FieldCacheSource Package Description org.apache.lucene.search.function Programmatic control over documents scores. -
-
Uses of FieldCacheSource in org.apache.lucene.search.function
Subclasses of FieldCacheSource in org.apache.lucene.search.function Modifier and Type Class Description class
ByteFieldSource
Expert: obtains single byte field values from theFieldCache
usinggetBytes()
and makes those values available as other numeric types, casting as needed.class
FloatFieldSource
Expert: obtains float field values from theFieldCache
usinggetFloats()
and makes those values available as other numeric types, casting as needed.class
IntFieldSource
Expert: obtains int field values from theFieldCache
usinggetInts()
and makes those values available as other numeric types, casting as needed.class
ShortFieldSource
Expert: obtains short field values from theFieldCache
usinggetShorts()
and makes those values available as other numeric types, casting as needed.Methods in org.apache.lucene.search.function with parameters of type FieldCacheSource Modifier and Type Method Description boolean
ByteFieldSource. cachedFieldSourceEquals(FieldCacheSource o)
abstract boolean
FieldCacheSource. cachedFieldSourceEquals(FieldCacheSource other)
Check if equals to anotherFieldCacheSource
, already knowing that cache and field are equal.boolean
FloatFieldSource. cachedFieldSourceEquals(FieldCacheSource o)
boolean
IntFieldSource. cachedFieldSourceEquals(FieldCacheSource o)
boolean
ShortFieldSource. cachedFieldSourceEquals(FieldCacheSource o)
-