Table of Contents

Class Byte

Namespace
Java.Lang
Assembly
MASES.JNet.dll
public class Byte : Number, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, ISerializable, INativeConvertible<Byte, byte>
Inheritance
JVMBridgeBase
JVMBridgeBase<Serializable>
Byte
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
Inherited Members
JVMBridgeBase<Serializable>.IsAssignableFrom(IJavaType)
JVMBridgeBase<Serializable>.IsAssignableFrom<T>()
JVMBridgeBase<Serializable>.Execute<T>(params T[])
JVMBridgeBase<Serializable>.DynBridgeClazz
JVMBridgeBase<Serializable>.BridgeClazz
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

Byte()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public Byte()

Byte(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public Byte(params object[] args)

Parameters

args object[]

Properties

BYTES

public static int BYTES { get; }

Property Value

int

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

public override bool IsBridgeStatic { get; }

Property Value

bool

MAX_VALUE

public static byte MAX_VALUE { get; }

Property Value

byte

MIN_VALUE

public static byte MIN_VALUE { get; }

Property Value

byte

SIZE

public static int SIZE { get; }

Property Value

int

TYPE

public static Class TYPE { get; }

Property Value

Class

Methods

Compare(byte, byte)

public static int Compare(byte arg0, byte arg1)

Parameters

arg0 byte

byte

arg1 byte

byte

Returns

int

int

CompareTo(Byte)

public int CompareTo(Byte arg0)

Parameters

arg0 Byte

Byte

Returns

int

int

CompareTo(object)

public int CompareTo(object arg0)

Parameters

arg0 object

object

Returns

int

int

CompareUnsigned(byte, byte)

public static int CompareUnsigned(byte arg0, byte arg1)

Parameters

arg0 byte

byte

arg1 byte

byte

Returns

int

int

Decode(String)

public static Byte Decode(String arg0)

Parameters

arg0 String

String

Returns

Byte

Byte

Exceptions

NumberFormatException

HashCode(byte)

public static int HashCode(byte arg0)

Parameters

arg0 byte

byte

Returns

int

int

ParseByte(String)

public static byte ParseByte(String arg0)

Parameters

arg0 String

String

Returns

byte

byte

Exceptions

NumberFormatException

ParseByte(String, int)

public static byte ParseByte(String arg0, int arg1)

Parameters

arg0 String

String

arg1 int

int

Returns

byte

byte

Exceptions

NumberFormatException

ToJVM(byte)

Returns the Byte from the clrValue instance

public static Byte ToJVM(byte clrValue)

Parameters

clrValue byte

The byte of CLR

Returns

Byte

The converted Byte

ToString(byte)

public static String ToString(byte arg0)

Parameters

arg0 byte

byte

Returns

String

String

ToUnsignedInt(byte)

public static int ToUnsignedInt(byte arg0)

Parameters

arg0 byte

byte

Returns

int

int

ToUnsignedLong(byte)

public static long ToUnsignedLong(byte arg0)

Parameters

arg0 byte

byte

Returns

long

long

ValueOf(String)

public static Byte ValueOf(String arg0)

Parameters

arg0 String

String

Returns

Byte

Byte

Exceptions

NumberFormatException

ValueOf(String, int)

public static Byte ValueOf(String arg0, int arg1)

Parameters

arg0 String

String

arg1 int

int

Returns

Byte

Byte

Exceptions

NumberFormatException

ValueOf(byte)

public static Byte ValueOf(byte arg0)

Parameters

arg0 byte

byte

Returns

Byte

Byte

Operators

implicit operator Comparable(Byte)

Converter from Byte to Comparable

public static implicit operator Comparable(Byte t)

Parameters

t Byte

Returns

Comparable

implicit operator byte(Byte)

Converter from Byte to byte

public static implicit operator byte(Byte b)

Parameters

b Byte

Returns

byte

implicit operator byte?(Byte)

Converter from Byte to Nullable<T>

public static implicit operator byte?(Byte b)

Parameters

b Byte

Returns

byte?

implicit operator Byte(byte)

Converter from byte to Byte

public static implicit operator Byte(byte b)

Parameters

b byte

Returns

Byte

implicit operator Byte(byte?)

Converter from Nullable<T> to Byte

public static implicit operator Byte(byte? b)

Parameters

b byte?

Returns

Byte