Package com.kenai.jnr.x86asm
Class Util
- java.lang.Object
-
- com.kenai.jnr.x86asm.Util
-
@Deprecated public final class Util extends java.lang.Object
Deprecated.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Util()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description (package private) static boolean
isInt16(long x)
Deprecated.Returns @c true if a given integer @a x is signed 16 bit integer(package private) static boolean
isInt32(long x)
Deprecated.Returns @c true if a given integer @a x is signed 32 bit integer(package private) static boolean
isInt8(long x)
Deprecated.Returns @c true if a given integer @a x is signed 8 bit integer(package private) static boolean
isUInt16(long x)
Deprecated.Returns @c true if a given integer @a x is unsigned 16 bit integer(package private) static boolean
isUInt32(long x)
Deprecated.Returns @c true if a given integer @a x is unsigned 32 bit integer(package private) static boolean
isUInt8(long x)
Deprecated.Returns @c true if a given integer @a x is unsigned 8 bit integer
-
-
-
Method Detail
-
isInt8
static final boolean isInt8(long x)
Deprecated.Returns @c true if a given integer @a x is signed 8 bit integer
-
isUInt8
static final boolean isUInt8(long x)
Deprecated.Returns @c true if a given integer @a x is unsigned 8 bit integer
-
isInt16
static final boolean isInt16(long x)
Deprecated.Returns @c true if a given integer @a x is signed 16 bit integer
-
isUInt16
static final boolean isUInt16(long x)
Deprecated.Returns @c true if a given integer @a x is unsigned 16 bit integer
-
isInt32
static final boolean isInt32(long x)
Deprecated.Returns @c true if a given integer @a x is signed 32 bit integer
-
isUInt32
static final boolean isUInt32(long x)
Deprecated.Returns @c true if a given integer @a x is unsigned 32 bit integer
-
-