Field MIN_VALUE
Field type: long
Member of:
java.lang.Long
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
private final static BigInteger ourMinLong = new BigInteger(Long.toString(Long.MIN_VALUE));
2
private final static java.math.BigDecimal bdMinLongValue = new java.math.BigDecimal (Long.MIN_VALUE);
3
return Long.toString(Long.MIN_VALUE);
4
public static final BigDecimal VERY_NEGATIVE = new BigDecimal(Long.MIN_VALUE);
5
final static Constant MIN_VALUE = Constant.fromValue(Long.MIN_VALUE) ;
6
super(CharValue,0,0,Long.MIN_VALUE);
7
if(Long.MIN_VALUE == value) {
8
it.testsIssue( "blah", Long.MIN_VALUE );
9
it.testsIssue( Long.MIN_VALUE );
10
_firstBufferPosition = Long.MIN_VALUE;
11
} else if (time==Long.MIN_VALUE) { timeStr="Epoch";
12
new Long(Long.MIN_VALUE), new Long(-1), new Long(0), new Long(1),
13
assertTrue(new CompareToBuilder().append(o1, Long.MIN_VALUE).toComparison() > 0);
14
randList.add(new Long(Long.MIN_VALUE));
15
ps.setLong(3, java.lang.Long.MIN_VALUE);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.