Field MIN_VALUE
Field type: short
Member of:
java.lang.Short
[
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 bdMinShortValue = new java.math.BigDecimal (Short.MIN_VALUE);
2
return Integer.toString(Short.MIN_VALUE);
3
if(Short.MIN_VALUE == value) {
4
mi.addMark( (short)1, Short.MIN_VALUE );
5
mi.addMark( Short.MIN_VALUE, (short)1 );
6
info.setValue(new Short(Short.MIN_VALUE).toString());
7
info.setValue(Short.MIN_VALUE + "1");
8
if (aValue < Short.MIN_VALUE) {
9
out.writeShort(Short.MIN_VALUE);
10
assertTrue(new CompareToBuilder().append(o1, Short.MIN_VALUE).toComparison() > 0);
11
else if (test < Short.MIN_VALUE)
12
randList.add(new Short(Short.MIN_VALUE));
13
String.valueOf(Short.MIN_VALUE),
14
ps.setInt(5, Short.MIN_VALUE);
15
if ((i < Short.MIN_VALUE) || (i > Short.MAX_VALUE)) {
16
int ushortMax = Short.MAX_VALUE - Short.MIN_VALUE;
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.