Field MIN_VALUE
Field type: float
Member of:
java.lang.Float
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
private final static java.math.BigDecimal bdMinFloatValue = new java.math.BigDecimal (Float.MIN_VALUE);
2
protected static final String MIN_VALUE_STRING = Float.toString(Float.MIN_VALUE);
3
return Float.toString(Float.MIN_VALUE);
4
if(Float.MIN_VALUE == value) {
5
info.setValue(new Float(Float.MIN_VALUE).toString());
6
out.writeFloat(Float.MIN_VALUE);
7
minimumValue.put(Float.class, new Float(Float.MIN_VALUE));
8
assertEquals(null, ArrayUtils.toPrimitive(l, Float.MIN_VALUE));
9
assertTrue(new CompareToBuilder().append(o1, Float.MIN_VALUE).toComparison() > 0);
10
strokeWidth = Float.MIN_VALUE;
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.