UInteger16

Summary

The wrapper class for the unsigned short primitive type.

Description

The System.UInteger16 class represents 16-bit unsigned integers. The System.UInteger16 class is the wrapper class for the unsigned short primitive type.

The range for 16-bit unsigned integers is [ 0, 65535 ] (inclusive).

Examples

Instantiation
1
2
3
import System;
 
System.UInteger16 x = new System.UInteger16(100);
Auto-boxing
1
2
3
import System;
 
System.UInteger16 x = 100;
Primitives Only
1
2
unsigned short x = 1;
unsigned short y = 2;

Methods

  • compare

    Compares the UInteger16 object to another UInteger16 object.

  • fromString

    Converts a string to an unsigned short value.

  • fromStringOr

    Converts a string to its equivalent unsigned short value or the provided default value if the conversion fails.

  • fromStringOrThrow

    Converts a string to a valid unsigned short value or throws an exception if the value cannot be converted.

  • isEven

    Checks if the number is an even number.

  • isOdd

    Checks if the number is an odd number.

  • MAX_VALUE

    Represents the maximum value for the unsigned short type.

  • MIN_VALUE

    Represents the minimum value for the unsigned short type.

  • toBase

    Returns a string representation of the integer value using the specified base.

  • toBinary

    Returns the binary (base 2) value of the integer.

  • toDecimal

    Returns the decimal (base 10) value of the integer.

  • toExponential

    Formats the integer value using exponential notation.

  • toExternal

    Converts the unsigned short value to its equivalent external value.

  • toFixed

    Formats the integer value using fixed-point notation.

  • toHex

    Returns the hexadecimal (base 16) value of the integer.

  • toPrecision

    Formats the integer value as a string to the given precision.

  • toString

    Converts the unsigned short value to an equivalent string value.

  • UInteger16 (Constructor)

    Constructs a System.UInteger16 object.

  • valueOf

    Returns the primitive unsigned short value wrapped by the System.UInteger16 object.

Share

HTML | BBCode | Direct Link