public class ByteUtil
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static byte |
and(byte b1,
byte b2) |
static int |
and(int i1,
int i2) |
static short |
and(short b1,
short b2) |
static int |
massOr(int... i) |
static short |
massOr(short... s) |
static int |
not(int i) |
static byte |
or(byte b1,
byte b2) |
static int |
or(int i1,
int i2) |
static short |
or(short b1,
short b2) |
static int |
shiftLeft(int operand,
int step) |
static short |
shiftLeft(short operand,
short step) |
static int |
xor(int i1,
int i2) |
static short |
xor(short b1,
short b2) |
public static byte or(byte b1,
byte b2)
public static byte and(byte b1,
byte b2)
public static short or(short b1,
short b2)
public static short and(short b1,
short b2)
public static short xor(short b1,
short b2)
public static short massOr(short... s)
public static int shiftLeft(int operand,
int step)
public static short shiftLeft(short operand,
short step)
public static int xor(int i1,
int i2)
public static int and(int i1,
int i2)
public static int or(int i1,
int i2)
public static int not(int i)
public static int massOr(int... i)