Utility class providing simple signed and unsigned primitive value conversions for byte, short, int, float and double.
More...
|
static final byte | float_to_byte (final float v, final boolean dSigned) |
|
static final short | float_to_short (final float v, final boolean dSigned) |
|
static final int | float_to_int (final float v, final boolean dSigned) |
|
static final byte | double_to_byte (final double v, final boolean dSigned) |
|
static final short | double_to_short (final double v, final boolean dSigned) |
|
static final int | double_to_int (final double v, final boolean dSigned) |
|
static final float | byte_to_float (final byte v, final boolean sSigned) |
|
static final double | byte_to_double (final byte v, final boolean sSigned) |
|
static final float | short_to_float (final short v, final boolean sSigned) |
|
static final double | short_to_double (final short v, final boolean sSigned) |
|
static final float | int_to_float (final int v, final boolean sSigned) |
|
static final double | int_to_double (final int v, final boolean sSigned) |
|
static final short | byte_to_short (final byte v, final boolean sSigned, final boolean dSigned) |
|
static final int | byte_to_int (final byte v, final boolean sSigned, final boolean dSigned) |
|
static final byte | short_to_byte (final short v, final boolean sSigned, final boolean dSigned) |
|
static final int | short_to_int (final short v, final boolean sSigned, final boolean dSigned) |
|
static final byte | int_to_byte (final int v, final boolean sSigned, final boolean dSigned) |
|
static final short | int_to_short (final int v, final boolean sSigned, final boolean dSigned) |
|
Utility class providing simple signed and unsigned primitive value conversions for byte, short, int, float and double.
Non float to non float conversions are handled via float or double, depending on the value range.
Definition at line 36 of file ValueConv.java.
◆ byte_to_double()
static final double org.jau.util.ValueConv.byte_to_double |
( |
final byte |
v, |
|
|
final boolean |
sSigned |
|
) |
| |
|
static |
◆ byte_to_float()
static final float org.jau.util.ValueConv.byte_to_float |
( |
final byte |
v, |
|
|
final boolean |
sSigned |
|
) |
| |
|
static |
◆ byte_to_int()
static final int org.jau.util.ValueConv.byte_to_int |
( |
final byte |
v, |
|
|
final boolean |
sSigned, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ byte_to_short()
static final short org.jau.util.ValueConv.byte_to_short |
( |
final byte |
v, |
|
|
final boolean |
sSigned, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ double_to_byte()
static final byte org.jau.util.ValueConv.double_to_byte |
( |
final double |
v, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ double_to_int()
static final int org.jau.util.ValueConv.double_to_int |
( |
final double |
v, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ double_to_short()
static final short org.jau.util.ValueConv.double_to_short |
( |
final double |
v, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ float_to_byte()
static final byte org.jau.util.ValueConv.float_to_byte |
( |
final float |
v, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ float_to_int()
static final int org.jau.util.ValueConv.float_to_int |
( |
final float |
v, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ float_to_short()
static final short org.jau.util.ValueConv.float_to_short |
( |
final float |
v, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ int_to_byte()
static final byte org.jau.util.ValueConv.int_to_byte |
( |
final int |
v, |
|
|
final boolean |
sSigned, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ int_to_double()
static final double org.jau.util.ValueConv.int_to_double |
( |
final int |
v, |
|
|
final boolean |
sSigned |
|
) |
| |
|
static |
◆ int_to_float()
static final float org.jau.util.ValueConv.int_to_float |
( |
final int |
v, |
|
|
final boolean |
sSigned |
|
) |
| |
|
static |
◆ int_to_short()
static final short org.jau.util.ValueConv.int_to_short |
( |
final int |
v, |
|
|
final boolean |
sSigned, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ short_to_byte()
static final byte org.jau.util.ValueConv.short_to_byte |
( |
final short |
v, |
|
|
final boolean |
sSigned, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
◆ short_to_double()
static final double org.jau.util.ValueConv.short_to_double |
( |
final short |
v, |
|
|
final boolean |
sSigned |
|
) |
| |
|
static |
◆ short_to_float()
static final float org.jau.util.ValueConv.short_to_float |
( |
final short |
v, |
|
|
final boolean |
sSigned |
|
) |
| |
|
static |
◆ short_to_int()
static final int org.jau.util.ValueConv.short_to_int |
( |
final short |
v, |
|
|
final boolean |
sSigned, |
|
|
final boolean |
dSigned |
|
) |
| |
|
static |
The documentation for this class was generated from the following file: