(Preview)
Package | mx.data.crypto |
Class | public class IntUtil |
Inheritance | IntUtil Object |
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services for Java EE 3.1 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Public Properties
Public Methods
Method | Defined By | ||
---|---|---|---|
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
[static]
Rotates x left n bits
| IntUtil | ||
[static]
Rotates x right n bits
| IntUtil | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
[static]
Outputs the hex value of a int, allowing the developer to specify
the endinaness in the process. | IntUtil | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
Method Detail
rol | () | method |
ror | () | method |
toHex | () | method |
public static function toHex(n:int, bigEndian:Boolean = false):String
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0, Flash Player 9.0 |
Outputs the hex value of a int, allowing the developer to specify the endinaness in the process. Hex output is lowercase.
Parameters
n:int — The int value to output as hex
| |
bigEndian:Boolean (default = false ) — Flag to output the int as big or little endian
|
String — A string of length 8 corresponding to the
hex representation of n ( minus the leading "0x" )
|
Wed Nov 21 2018, 06:34 AM -08:00