Example #1
0
 public long longValue(int i) {
   if (!isInteger(i)) {
     throw new ClassCastException("value #" + i + " is not a long in " + this);
   }
   final Iterator it = new Iterator();
   while (i-- >= 0) {
     it.next();
   }
   return it.longValue();
 }