Home | History | Annotate | Download | only in util

Lines Matching refs:Float

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