Table of Contents

Class HexFormat

Namespace
Java.Util
Assembly
MASES.Netdroid.dll
public class HexFormat : JVMBridgeBase<HexFormat>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBaseInstance>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeBaseInstance, IJVMBridgeDefinition
Inheritance
HexFormat
Implements
Extension Methods

Constructors

HexFormat(IJVMBridgeBaseInitializer)

Initializer used internally by JCOBridge. Do not use directly.

[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public HexFormat(IJVMBridgeBaseInitializer initializer)

Parameters

initializer IJVMBridgeBaseInitializer

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

true if the BridgeClassName is an abstract class, i.e. cannot be created an instance

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements java.lang.AutoCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

true if the BridgeClassName is an interface, i.e. does not have any public constructor

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

true if the BridgeClassName is a static class, i.e. does not have any public constructor

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

Delimiter()

public String Delimiter()

Returns

String

String

FormatHex(byte[])

public String FormatHex(byte[] arg0)

Parameters

arg0 byte[]

byte

Returns

String

String

FormatHex(byte[], int, int)

public String FormatHex(byte[] arg0, int arg1, int arg2)

Parameters

arg0 byte[]

byte

arg1 int

int

arg2 int

int

Returns

String

String

FormatHex<A>(A, byte[])

public A FormatHex<A>(A arg0, byte[] arg1) where A : IAppendable

Parameters

arg0 A

A

arg1 byte[]

byte

Returns

A

A

Type Parameters

A

IAppendable

FormatHex<A>(A, byte[], int, int)

public A FormatHex<A>(A arg0, byte[] arg1, int arg2, int arg3) where A : IAppendable

Parameters

arg0 A

A

arg1 byte[]

byte

arg2 int

int

arg3 int

int

Returns

A

A

Type Parameters

A

IAppendable

FromHexDigit(int)

public static int FromHexDigit(int arg0)

Parameters

arg0 int

int

Returns

int

int

FromHexDigits(CharSequence)

public static int FromHexDigits(CharSequence arg0)

Parameters

arg0 CharSequence

CharSequence

Returns

int

int

FromHexDigits(CharSequence, int, int)

public static int FromHexDigits(CharSequence arg0, int arg1, int arg2)

Parameters

arg0 CharSequence

CharSequence

arg1 int

int

arg2 int

int

Returns

int

int

FromHexDigitsToLong(CharSequence)

public static long FromHexDigitsToLong(CharSequence arg0)

Parameters

arg0 CharSequence

CharSequence

Returns

long

long

FromHexDigitsToLong(CharSequence, int, int)

public static long FromHexDigitsToLong(CharSequence arg0, int arg1, int arg2)

Parameters

arg0 CharSequence

CharSequence

arg1 int

int

arg2 int

int

Returns

long

long

IsHexDigit(int)

public static bool IsHexDigit(int arg0)

Parameters

arg0 int

int

Returns

bool

bool

IsUpperCase()

public bool IsUpperCase()

Returns

bool

bool

Of()

public static HexFormat Of()

Returns

HexFormat

HexFormat

OfDelimiter(String)

public static HexFormat OfDelimiter(String arg0)

Parameters

arg0 String

String

Returns

HexFormat

HexFormat

ParseHex(CharSequence)

public byte[] ParseHex(CharSequence arg0)

Parameters

arg0 CharSequence

CharSequence

Returns

byte[]

byte

ParseHex(CharSequence, int, int)

public byte[] ParseHex(CharSequence arg0, int arg1, int arg2)

Parameters

arg0 CharSequence

CharSequence

arg1 int

int

arg2 int

int

Returns

byte[]

byte

ParseHex(char[], int, int)

public byte[] ParseHex(char[] arg0, int arg1, int arg2)

Parameters

arg0 char[]

char

arg1 int

int

arg2 int

int

Returns

byte[]

byte

Prefix()

public String Prefix()

Returns

String

String

Suffix()

public String Suffix()

Returns

String

String

ToHexDigits(byte)

public String ToHexDigits(byte arg0)

Parameters

arg0 byte

byte

Returns

String

String

ToHexDigits(char)

public String ToHexDigits(char arg0)

Parameters

arg0 char

char

Returns

String

String

ToHexDigits(short)

public String ToHexDigits(short arg0)

Parameters

arg0 short

short

Returns

String

String

ToHexDigits(int)

public String ToHexDigits(int arg0)

Parameters

arg0 int

int

Returns

String

String

ToHexDigits(long)

public String ToHexDigits(long arg0)

Parameters

arg0 long

long

Returns

String

String

ToHexDigits(long, int)

public String ToHexDigits(long arg0, int arg1)

Parameters

arg0 long

long

arg1 int

int

Returns

String

String

ToHexDigits<A>(A, byte)

public A ToHexDigits<A>(A arg0, byte arg1) where A : IAppendable

Parameters

arg0 A

A

arg1 byte

byte

Returns

A

A

Type Parameters

A

IAppendable

ToHighHexDigit(int)

public char ToHighHexDigit(int arg0)

Parameters

arg0 int

int

Returns

char

char

ToLowHexDigit(int)

public char ToLowHexDigit(int arg0)

Parameters

arg0 int

int

Returns

char

char

WithDelimiter(String)

public HexFormat WithDelimiter(String arg0)

Parameters

arg0 String

String

Returns

HexFormat

HexFormat

WithLowerCase()

public HexFormat WithLowerCase()

Returns

HexFormat

HexFormat

WithPrefix(String)

public HexFormat WithPrefix(String arg0)

Parameters

arg0 String

String

Returns

HexFormat

HexFormat

WithSuffix(String)

public HexFormat WithSuffix(String arg0)

Parameters

arg0 String

String

Returns

HexFormat

HexFormat

WithUpperCase()

public HexFormat WithUpperCase()

Returns

HexFormat

HexFormat