Home | History | Annotate | Download | only in util

Lines Matching refs:Float

22  * <code>float</code>. This type-specific subclass enables performance benefit by allowing
23 * calls to a {@link #set(Object, Float) set()} function that takes the primitive
24 * <code>float</code> type and avoids autoboxing and other overhead associated with the
25 * <code>Float</code> class.
31 public abstract class FloatProperty<T> extends Property<T, Float> {
34 super(Float.class, name);
38 * A type-specific override of the {@link #set(Object, Float)} that is faster when dealing
39 * with fields of type <code>float</code>.
41 public abstract void setValue(T object, float value);
44 final public void set(T object, Float value) {