ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
mx.data.crypto 

IntUtil  - AS3 ADEP Data Services

Packagemx.data.crypto
Classpublic class IntUtil
InheritanceIntUtil Inheritance Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3.1
Runtime Versions: Flash Player 9, AIR 1.1

Contains reusable methods for operations pertaining to int values.



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
Public Methods
 MethodDefined By
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
  
rol(x:int, n:int):int
[static] Rotates x left n bits
IntUtil
  
ror(x:int, n:int):uint
[static] Rotates x right n bits
IntUtil
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
  
toHex(n:int, bigEndian:Boolean = false):String
[static] Outputs the hex value of a int, allowing the developer to specify the endinaness in the process.
IntUtil
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Method Detail

rol

()method
public static function rol(x:int, n:int):int

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3.1
Runtime Versions: Flash Player 9, AIR 1.1

Rotates x left n bits

Parameters

x:int — value to rotate.
 
n:int — number of bits to rotate.

Returns
int — result of rotation operation.

ror

()method 
public static function ror(x:int, n:int):uint

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3.1
Runtime Versions: Flash Player 9, AIR 1.1

Rotates x right n bits

Parameters

x:int — value to rotate.
 
n:int — number of bits to rotate.

Returns
uint — result of rotation operation.

toHex

()method 
public static function toHex(n:int, bigEndian:Boolean = false):String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3.1
Runtime Versions: Flash Player 9, AIR 1.1

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

Returns
String — A string of length 8 corresponding to the hex representation of n ( minus the leading "0x" )