public enum UnsafeText extends Enum<UnsafeText>
| Modifier and Type | Method and Description |
|---|---|
static long |
append8bit(long address,
byte[] bytes) |
static long |
append8bit(long address,
char[] chars) |
static long |
appendBase10d(long address,
long num,
int decimal) |
static long |
appendDouble(long address,
double d) |
static long |
appendFixed(long address,
double num,
int digits) |
static long |
appendFixed(long address,
long num) |
protected static long |
appendFraction(long address,
double d,
int sign,
long mantissa,
int shift) |
protected static long |
appendIntegerAndFraction(long address,
double d,
int sign,
long mantissa,
int shift) |
protected static long |
appendLargeNumber(long address,
long mantissa,
int shift) |
protected static void |
reverseTheOrder(long address,
long start) |
static UnsafeText |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnsafeText[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static UnsafeText[] values()
for (UnsafeText c : UnsafeText.values()) System.out.println(c);
public static UnsafeText valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static long appendFixed(long address,
long num)
protected static void reverseTheOrder(long address,
long start)
public static long appendFixed(long address,
double num,
int digits)
public static long appendBase10d(long address,
long num,
int decimal)
public static long appendDouble(long address,
double d)
throws BufferOverflowException,
IllegalArgumentException
protected static long appendLargeNumber(long address,
long mantissa,
int shift)
protected static long appendFraction(long address,
double d,
int sign,
long mantissa,
int shift)
protected static long appendIntegerAndFraction(long address,
double d,
int sign,
long mantissa,
int shift)
public static long append8bit(long address,
byte[] bytes)
public static long append8bit(long address,
char[] chars)
Copyright © 2019. All rights reserved.