Method Summary |
|
public static int | ceil(int p, int q) Answers the most negative (i.e. |
public static int | cos(int angle, int length) Answers the length of the side adjacent to the given angle
of a right triangle. |
public static boolean | equalsIgnoreCase(String s1, String s2) Compares two instances of class String ignoring the case of the
characters and answers if they are equal. |
public static void | exec(String prog) Execute a program in a separate platform process if the
underlying platform support this. |
public static void | exec(String[] progArray) Execute progArray[0] in a separate platform process if the
underlying platform support this. |
public static int | floor(int p, int q) Answers the most positive (i.e. |
public static String | getMessage(String key) Returns the NLS'ed message for the given argument. |
public static String | getMessage(String key, Object[] args) |
public static void | interrupt() Interrupt the current thread. |
public static boolean | isLetter(char c) Answers whether the character is a letter. |
public static boolean | isLetterOrDigit(char c) Answers whether the character is a letter or a digit. |
public static boolean | isSpaceChar(char c) Answers whether the character is a Unicode space character. |
public static boolean | isWhitespace(char c) Answers whether the character is a whitespace character. |
public static OutputStream | newDeflaterOutputStream(OutputStream stream) Create an DeflaterOutputStream if such things are supported. |
public static InputStream | newFileInputStream(String filename) Open a file if such things are supported. |
public static OutputStream | newFileOutputStream(String filename) Open a file if such things are supported. |
public static InputStream | newInflaterInputStream(InputStream stream) Create an InflaterInputStream if such things are supported. |
public static int | pow2(int n) Returns 2 raised to the power of the argument. |
public static int | round(int p, int q) Answers the result of rounding to the closest integer the number obtained
by dividing the first argument p by the second argument q.
IMPORTANT: the j2me version has an additional restriction on
the arguments. |
public static int | sin(int angle, int length) Answers the length of the side opposite to the given angle
of a right triangle. |