Pacote | mx.data.crypto |
Classe | public class IntUtil |
Herança | IntUtil Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
[estático]
Rotates x left n bits
| IntUtil | ||
[estático]
Rotates x right n bits
| IntUtil | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
[estático]
Outputs the hex value of a int, allowing the developer to specify
the endinaness in the process. | IntUtil | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
Detalhes do método
rol | () | método |
public static function rol(x:int, n:int):int
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Rotates x left n bits
Parâmetros
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
int — result of rotation operation.
|
ror | () | método |
public static function ror(x:int, n:int):uint
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Rotates x right n bits
Parâmetros
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
uint — result of rotation operation.
|
toHex | () | método |
public static function toHex(n:int, bigEndian:Boolean = false):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Versões de runtime: | 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.
Parâmetros
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 Jun 13 2018, 11:10 AM Z