|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.misc.Util
public final class Util
Miscellaneous utility methods.
Field Summary | |
---|---|
static java.util.Enumeration |
EMPTY_ENUMERATION
An empty enumeration. |
private static boolean |
nativeLogExists
Whether native logarithm function is loaded. |
Constructor Summary | |
---|---|
Util()
|
Method Summary | |
---|---|
static java.lang.Object |
append(java.lang.Object values,
java.lang.Object value)
Return array with new component appended. |
static void |
assertion(boolean cond)
Validate condition. |
static byte |
clearFlag(byte flags,
byte mask)
Clear a flag within a byte of flags. |
static boolean |
contains(java.lang.Object[] set,
java.lang.Object item)
Return whether a given Objects exists within an Object array. |
private static float |
fast_log(float n)
Native logarithm function. |
static double |
fromDB(double x)
Convert number from decibels. |
static boolean |
getFlag(byte flags,
byte mask)
Return status of a single bit within a byte of flags. |
static float |
log(float n)
Native logarithm function wrapper. |
static void |
printMemoryStats()
Print memory statistics. |
static long |
randomTime(long bound)
Return random long between 0 (inclusive) and bound (exclusive). |
static java.lang.String[] |
readLines(java.io.File f)
Read all lines of a file. |
static java.lang.String[] |
readLines(java.lang.String filename)
Read all lines of a file. |
static java.lang.Object |
rest(java.lang.Object values)
Return array with all but first component. |
static byte |
setFlag(byte flags,
byte mask)
Set a flag within a byte of flags. |
static byte |
setFlag(byte flags,
byte mask,
boolean value)
Set status of a single bit within a byte of flags. |
static double |
square(double x)
Return number squared. |
static int |
square(int x)
Return number squared. |
static java.lang.String |
stringJoin(java.lang.Object[] objs,
java.lang.String delim)
Concatenate array of Strings separated by given delimeter. |
static java.lang.String |
timeSeconds()
Return current simulation time as string in seconds. |
static double |
toDB(double x)
Convert number to decibels. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.util.Enumeration EMPTY_ENUMERATION
private static final boolean nativeLogExists
Constructor Detail |
---|
public Util()
Method Detail |
---|
public static double square(double x)
x
- number to square
public static int square(int x)
x
- number to square
public static double toDB(double x)
x
- number to convert
public static double fromDB(double x)
x
- number to convert
public static java.lang.String[] readLines(java.io.File f) throws java.io.IOException
f
- file to read
java.io.IOException
- on any input errorpublic static java.lang.String[] readLines(java.lang.String filename) throws java.io.IOException
filename
- name of file to read
java.io.IOException
- on any input errorpublic static void printMemoryStats()
public static java.lang.String timeSeconds()
private static float fast_log(float n)
n
- number to log
public static float log(float n)
n
- number to log
public static void assertion(boolean cond)
cond
- condition to validatepublic static boolean contains(java.lang.Object[] set, java.lang.Object item)
set
- an array of objects to test for membershipitem
- object to test membership
public static java.lang.String stringJoin(java.lang.Object[] objs, java.lang.String delim)
objs
- array of objects to stringify and concatenatedelim
- delimeter to insert between each pair of strings
public static java.lang.Object rest(java.lang.Object values)
values
- array to copy all but first component
public static java.lang.Object append(java.lang.Object values, java.lang.Object value)
values
- array to copy and append tovalue
- component to append
public static long randomTime(long bound)
bound
- upper bound of range
public static boolean getFlag(byte flags, byte mask)
flags
- byte of flagsmask
- mask of bit to read
public static byte setFlag(byte flags, byte mask, boolean value)
flags
- byte of flagsmask
- mask of bit to be setvalue
- new value for bit
public static byte setFlag(byte flags, byte mask)
flags
- byte of flagsmask
- mask of bit to be set
public static byte clearFlag(byte flags, byte mask)
flags
- byte of flagsmask
- mask of bit to be set
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |