Java.Lang.Byte Members

The members of Java.Lang.Byte are listed below.

See Also: Inherited members from Java.Lang.Number

Public Constructors

Constructs a new Byte with the specified primitive byte value.
Constructs a new Byte from the specified string.

Public Fields

const
MaxValuesbyte (127). The maximum Byte value, 27-1.
const
MinValuesbyte (-128). The minimum Byte value, -27.
const
Sizeint (8). The number of bits needed to represent a Byte value in two's complement form.

Public Properties

static
TypeClass. The Java.Lang.Class object that represents the primitive type byte.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

CompareTo(Byte) : int
Compares this object to the specified byte object to determine their relative order.
static
Decode(string) : Byte
Parses the specified string and returns a Byte instance if the string can be decoded into a single byte value.
override
DoubleValue() : double
Returns this object's value as a double.
override
FloatValue() : float
Returns this object's value as a float.
override
IntValue() : int
Returns this object's value as an int.
override
LongValue() : long
Returns this object's value as a long.
static
ParseByte(string) : sbyte
Parses the specified string as a signed decimal byte value.
static
ParseByte(string, int) : sbyte
Parses the specified string as a signed byte value using the specified radix.
static
ToString(sbyte) : string
Returns a string containing a concise, human-readable description of the specified byte value.
static
ValueOf(sbyte) : Byte
If it is not necessary to get a new Byte instance, it is recommended to use this method instead of the constructor, since it maintains a cache of instances which may result in better performance.
static
ValueOf(string) : Byte
Parses the specified string as a signed decimal byte value.
static
ValueOf(string, int) : Byte
Parses the specified string as a signed byte value using the specified radix.

Public Operators

static
Conversion to System.SByte(Explicit)Documentation for this section has not yet been entered.

Explicitly Implemented Interface Members

Java.Lang.IComparable.CompareToDocumentation for this section has not yet been entered.
IConvertible.GetTypeCodeDocumentation for this section has not yet been entered.
IConvertible.ToBooleanDocumentation for this section has not yet been entered.
IConvertible.ToByteDocumentation for this section has not yet been entered.
IConvertible.ToCharDocumentation for this section has not yet been entered.
IConvertible.ToDateTimeDocumentation for this section has not yet been entered.
IConvertible.ToDecimalDocumentation for this section has not yet been entered.
IConvertible.ToDoubleDocumentation for this section has not yet been entered.
IConvertible.ToInt16Documentation for this section has not yet been entered.
IConvertible.ToInt32Documentation for this section has not yet been entered.
IConvertible.ToInt64Documentation for this section has not yet been entered.
IConvertible.ToSByteDocumentation for this section has not yet been entered.
IConvertible.ToSingleDocumentation for this section has not yet been entered.
IConvertible.ToStringDocumentation for this section has not yet been entered.
IConvertible.ToTypeDocumentation for this section has not yet been entered.
IConvertible.ToUInt16Documentation for this section has not yet been entered.
IConvertible.ToUInt32Documentation for this section has not yet been entered.
IConvertible.ToUInt64Documentation for this section has not yet been entered.