Package org.apache.solr.analytics.value
Interface FloatValue
-
- All Superinterfaces:
AnalyticsValue,AnalyticsValueStream,FloatValueStream
- All Known Subinterfaces:
FloatValue.CastingFloatValue,IntValue.CastingIntValue
- All Known Implementing Classes:
ConstantFloatValue,ConstantIntValue,FloatField,FloatValue.AbstractFloatValue,IntField,IntValue.AbstractIntValue
public interface FloatValue extends FloatValueStream, AnalyticsValue
A single-valued analytics value that can be represented as a float.The back-end production of the value can change inbetween calls to
getFloat()andAnalyticsValue.exists(), resulting in different values on each call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFloatValue.AbstractFloatValueAn abstract base forFloatValue.CastingFloatValuethat automatically casts to all types ifgetFloat()andAnalyticsValue.exists()are implemented.static interfaceFloatValue.CastingFloatValueAn interface that represents all of the types aFloatValueshould be able to cast to.-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.AnalyticsValue
AnalyticsValue.AbstractAnalyticsValue
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.AnalyticsValueStream
AnalyticsValueStream.AbstractAnalyticsValueStream, AnalyticsValueStream.ExpressionType
-
Nested classes/interfaces inherited from interface org.apache.solr.analytics.value.FloatValueStream
FloatValueStream.AbstractFloatValueStream, FloatValueStream.CastingFloatValueStream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetFloat()Get the float representation of the current value.-
Methods inherited from interface org.apache.solr.analytics.value.AnalyticsValue
exists, getObject
-
Methods inherited from interface org.apache.solr.analytics.value.AnalyticsValueStream
convertToConstant, getExpressionStr, getExpressionType, getName, streamObjects
-
Methods inherited from interface org.apache.solr.analytics.value.FloatValueStream
streamFloats
-
-
-
-
Method Detail
-
getFloat
float getFloat()
Get the float representation of the current value.NOTE: The value returned is not valid unless calling
AnalyticsValue.exists()afterwards returnsTRUE.- Returns:
- the current value
-
-