Method | Description | |
---|---|---|
GetCharsFromString ( String sourceString, int sourceStart, int sourceEnd, char destinationArray, int destinationStart ) : void |
Copies an array of chars obtained from a String into a specified array of chars
|
|
Identity ( double literal ) : double |
This method returns the literal value received
|
|
Identity ( float literal ) : float |
This method returns the literal value received
|
|
Identity ( long literal ) : long |
This method returns the literal value received
|
|
Identity ( ulong literal ) : ulong |
This method returns the literal value received
|
|
SetCapacity ( List |
Sets the capacity for the specified ArrayList
|
|
ToByteArray ( Object tempObjectArray ) : byte[] |
Converts a array of object-type instances to a byte-type array.
|
|
ToByteArray ( String sourceString ) : byte[] |
Converts a string to an array of bytes
|
|
ToByteArray ( sbyte sbyteArray ) : byte[] |
Converts an array of sbytes to an array of bytes
|
|
ToSByteArray ( byte byteArray ) : sbyte[] |
Receives a byte array and returns it transformed in an sbyte array
|
|
URShift ( int number, int bits ) : int |
Performs an unsigned bitwise right shift with the specified number
|
|
URShift ( int number, long bits ) : int |
Performs an unsigned bitwise right shift with the specified number
|
|
URShift ( long number, int bits ) : long |
Performs an unsigned bitwise right shift with the specified number
|
|
URShift ( long number, long bits ) : long |
Performs an unsigned bitwise right shift with the specified number
|
public static GetCharsFromString ( String sourceString, int sourceStart, int sourceEnd, char destinationArray, int destinationStart ) : void | ||
sourceString | String | The String to get the chars from |
sourceStart | int | Position of the String to start getting the chars |
sourceEnd | int | Position of the String to end getting the chars |
destinationArray | char | Array to return the chars |
destinationStart | int | Position of the destination array of chars to start storing the chars |
return | void |
public static Identity ( double literal ) : double | ||
literal | double | The literal to return |
return | double |
public static Identity ( float literal ) : float | ||
literal | float | The literal to return |
return | float |
public static Identity ( long literal ) : long | ||
literal | long | The literal to return |
return | long |
public static Identity ( ulong literal ) : ulong | ||
literal | ulong | The literal to return |
return | ulong |
public static SetCapacity ( List | ||
vector | List | The ArrayList which capacity will be set |
newCapacity | int | The new capacity value |
return | void |
public static ToByteArray ( Object tempObjectArray ) : byte[] | ||
tempObjectArray | Object | Array to convert. |
return | byte[] |
public static ToByteArray ( String sourceString ) : byte[] | ||
sourceString | String | The string to be converted |
return | byte[] |
public static ToByteArray ( sbyte sbyteArray ) : byte[] | ||
sbyteArray | sbyte | The array of sbytes to be converted |
return | byte[] |
public static ToSByteArray ( byte byteArray ) : sbyte[] | ||
byteArray | byte | Byte array to process |
return | sbyte[] |
public static URShift ( int number, int bits ) : int | ||
number | int | Number to operate on |
bits | int | Ammount of bits to shift |
return | int |
public static URShift ( int number, long bits ) : int | ||
number | int | Number to operate on |
bits | long | Ammount of bits to shift |
return | int |
public static URShift ( long number, int bits ) : long | ||
number | long | Number to operate on |
bits | int | Ammount of bits to shift |
return | long |
public static URShift ( long number, long bits ) : long | ||
number | long | Number to operate on |
bits | long | Ammount of bits to shift |
return | long |