Uses of Class
com.sun.jdmk.UnsignedLong

Packages that use UnsignedLong
com.sun.jdmk Provides the core Java DMK classes. 
com.sun.management.snmp Provides the core classes for implementing common SNMP data types and services
 

Uses of UnsignedLong in com.sun.jdmk
 

Fields in com.sun.jdmk declared as UnsignedLong
static UnsignedLong UnsignedLong.MAX_VALUE
          The largest representable UnsignedLong value, equal to 264 - 1.
 

Methods in com.sun.jdmk that return UnsignedLong
 UnsignedLong UnsignedLong.add(UnsignedLong x)
          Return an UnsignedLong that is equal mod 264 to this + x.
 UnsignedLong UnsignedLong.and(UnsignedLong x)
          Return an UnsignedLong that is the bitwise and of this and x.
 UnsignedLong UnsignedLong.clearBit(int n)
          Return an UnsignedLong that has the designated bit clear.
static UnsignedLong UnsignedLong.decode(String s)
          Return an UnsignedLong whose value is specified by the given String, including a possible prefix indicating the radix.
 UnsignedLong UnsignedLong.divide(UnsignedLong x)
          Return an UnsignedLong that is equal to [this / x], where [x] is the floor function.
static UnsignedLong UnsignedLong.make(long x)
          Make an UnsignedLong object representing a value between 0 and 264 that is equal mod 264 to x.
 UnsignedLong UnsignedLong.max(UnsignedLong x)
          Return the larger of this and x.
 UnsignedLong UnsignedLong.min(UnsignedLong x)
          Return the smaller of this and x.
 UnsignedLong UnsignedLong.mod(UnsignedLong x)
          Return an UnsignedLong that is equal to this mod x.
 UnsignedLong UnsignedLong.multiply(UnsignedLong x)
          Return an UnsignedLong that is equal mod 264 to this * x.
 UnsignedLong UnsignedLong.not()
          Return an UnsignedLong that is the bitwise not of this, equal to 264 - 1 - this.
 UnsignedLong UnsignedLong.or(UnsignedLong x)
          Return an UnsignedLong that is the bitwise or of this and x.
 UnsignedLong UnsignedLong.setBit(int n)
          Return an UnsignedLong that has the designated bit set.
 UnsignedLong UnsignedLong.shiftLeft(int n)
          Return an UnsignedLong that is equal mod 264 to [this * 2n], where [x] is the floor function.
 UnsignedLong UnsignedLong.shiftRight(int n)
          Return an UnsignedLong that is equal mod 264 to [this / 2n], where [x] is the floor function.
 UnsignedLong UnsignedLong.subtract(UnsignedLong x)
          Return an UnsignedLong that is equal mod 264 to this - x.
static UnsignedLong UnsignedLong.valueOf(String s)
          Return an UnsignedLong whose value is specified by the given String in decimal.
static UnsignedLong UnsignedLong.valueOf(String s, int radix)
          Return an UnsignedLong whose value is specified by the given String in the given radix.
 UnsignedLong UnsignedLong.xor(UnsignedLong x)
          Return an UnsignedLong that is the bitwise xor of this and x.
 

Methods in com.sun.jdmk with parameters of type UnsignedLong
 UnsignedLong UnsignedLong.add(UnsignedLong x)
          Return an UnsignedLong that is equal mod 264 to this + x.
 UnsignedLong UnsignedLong.and(UnsignedLong x)
          Return an UnsignedLong that is the bitwise and of this and x.
 UnsignedLong UnsignedLong.divide(UnsignedLong x)
          Return an UnsignedLong that is equal to [this / x], where [x] is the floor function.
 UnsignedLong UnsignedLong.max(UnsignedLong x)
          Return the larger of this and x.
 UnsignedLong UnsignedLong.min(UnsignedLong x)
          Return the smaller of this and x.
 UnsignedLong UnsignedLong.mod(UnsignedLong x)
          Return an UnsignedLong that is equal to this mod x.
 UnsignedLong UnsignedLong.multiply(UnsignedLong x)
          Return an UnsignedLong that is equal mod 264 to this * x.
 UnsignedLong UnsignedLong.or(UnsignedLong x)
          Return an UnsignedLong that is the bitwise or of this and x.
 UnsignedLong UnsignedLong.subtract(UnsignedLong x)
          Return an UnsignedLong that is equal mod 264 to this - x.
static String UnsignedLong.toBinaryString(UnsignedLong u)
          Return a String that is the binary representation of this unsigned number, without extra leading zeroes.
static String UnsignedLong.toHexString(UnsignedLong u)
          Return a String that is the hexadecimal representation of this unsigned number, without extra leading zeroes.
static String UnsignedLong.toOctalString(UnsignedLong u)
          Return a String that is the octal representation of this unsigned number, without extra leading zeroes.
 UnsignedLong UnsignedLong.xor(UnsignedLong x)
          Return an UnsignedLong that is the bitwise xor of this and x.
 

Uses of UnsignedLong in com.sun.management.snmp
 

Methods in com.sun.management.snmp that return UnsignedLong
 UnsignedLong SnmpCounter64.toUnsignedLong()
          Converts the counter value to its UnsignedLong form.
 UnsignedLong SnmpOid.toUnsignedLong()
           
 

Methods in com.sun.management.snmp with parameters of type UnsignedLong
 void SnmpVarBind.setSnmpCounter64Value(UnsignedLong val)
          Sets the SnmpCounter64 value part associated with this SnmpVarBind with the specified counter 64 value.
 

Constructors in com.sun.management.snmp with parameters of type UnsignedLong
SnmpCounter64(UnsignedLong v)
          Constructs a new SnmpCounter64 from the specified UnsignedLong value.
 


Open Source build 02
opendmk-1.0-b02 2007.10.01_19:17:46_MEST

Copyright 1998-2007 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.