Package org.xhtmlrenderer.util
Class Util
- java.lang.Object
-
- org.xhtmlrenderer.util.Util
-
- Direct Known Subclasses:
Uu
public class Util extends java.lang.ObjectDescription of the Class- Author:
- empty
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidcenter(javax.swing.JDialog frame)Description of the Methodstatic voidcenter(javax.swing.JFrame frame)Description of the Methodstatic java.lang.Stringfile_to_string(java.io.File file)Description of the Methodstatic java.lang.Stringfile_to_string(java.lang.String filename)Description of the Methodstatic java.lang.Stringinputstream_to_string(java.io.InputStream in)Description of the Methodstatic booleanisNumber(java.lang.String str)Gets the number attribute of the Util classstatic java.lang.String[]list_to_strings(java.util.List l)Description of the Methodvoidprint(java.lang.Object o)Description of the Methodvoidprint_array(byte[] array)Description of the Methodvoidprint_array(int[] array)Description of the Methodvoidprint_array(int[][] array)Description of the Methodvoidprint_array(java.lang.Object[] array)Description of the Methodvoidprint_calendar(java.util.Calendar cal)Description of the Methodvoidprint_date(java.util.Date date)Description of the Methodvoidprint_hashtable(java.util.Hashtable h)Description of the Methodvoidprint_vector(java.util.Vector v)Description of the Methodvoidprintln(java.lang.Object o)Description of the Methodvoidprintln(java.lang.Object o, boolean line)Description of the MethodvoidprintUnixtime(long sec)Description of the Methodstatic java.lang.Stringreplace(java.lang.String source, java.lang.String target, java.lang.String replacement)Description of the MethodvoidsetOn(boolean on)Sets the on attribute of the Util objectvoidsetPrintWriter(java.io.PrintWriter writer)Sets the printWriter attribute of the Util objectstatic voidsleep(long msec)Description of the Methodstatic java.lang.Stringstack_to_string(java.lang.Exception e)Description of the Methodstatic java.lang.Stringstack_to_string(java.lang.Throwable e)Description of the Methodstatic voidstring_to_file(java.lang.String text, java.io.File file)Description of the Methodstatic intstring_to_int(java.lang.String str)Description of the Methodstatic java.util.Listto_list(java.lang.Object[] array)Description of the Methodstatic java.util.ListtoList(java.lang.Object[] array)Description of the Methodstatic java.lang.String[]vector_to_strings(java.util.Vector v)Description of the Method
-
-
-
Method Detail
-
print
public void print(java.lang.Object o)
Description of the Method- Parameters:
o- PARAM
-
println
public void println(java.lang.Object o)
Description of the Method- Parameters:
o- PARAM
-
println
public void println(java.lang.Object o, boolean line)Description of the Method- Parameters:
o- PARAMline- PARAM
-
print_vector
public void print_vector(java.util.Vector v)
Description of the Method- Parameters:
v- PARAM
-
print_array
public void print_array(int[][] array)
Description of the Method- Parameters:
array- PARAM
-
print_array
public void print_array(java.lang.Object[] array)
Description of the Method- Parameters:
array- PARAM
-
print_array
public void print_array(int[] array)
Description of the Method- Parameters:
array- PARAM
-
print_hashtable
public void print_hashtable(java.util.Hashtable h)
Description of the Method- Parameters:
h- PARAM
-
print_array
public void print_array(byte[] array)
Description of the Method- Parameters:
array- PARAM
-
print_date
public void print_date(java.util.Date date)
Description of the Method- Parameters:
date- PARAM
-
print_calendar
public void print_calendar(java.util.Calendar cal)
Description of the Method- Parameters:
cal- PARAM
-
printUnixtime
public void printUnixtime(long sec)
Description of the Method- Parameters:
sec- PARAM
-
setOn
public void setOn(boolean on)
Sets the on attribute of the Util object- Parameters:
on- The new on value
-
setPrintWriter
public void setPrintWriter(java.io.PrintWriter writer)
Sets the printWriter attribute of the Util object- Parameters:
writer- The new printWriter value
-
file_to_string
public static java.lang.String file_to_string(java.lang.String filename) throws java.io.FileNotFoundException, java.io.IOExceptionDescription of the Method- Parameters:
filename- PARAM- Returns:
- Returns
- Throws:
java.io.FileNotFoundException- Throwsjava.io.IOException- Throws
-
string_to_file
public static void string_to_file(java.lang.String text, java.io.File file) throws java.io.IOExceptionDescription of the Method- Parameters:
text- PARAMfile- PARAM- Throws:
java.io.IOException- Throws
-
string_to_int
public static int string_to_int(java.lang.String str)
Description of the Method- Parameters:
str- PARAM- Returns:
- Returns
-
stack_to_string
public static java.lang.String stack_to_string(java.lang.Exception e)
Description of the Method- Parameters:
e- PARAM- Returns:
- Returns
-
stack_to_string
public static java.lang.String stack_to_string(java.lang.Throwable e)
Description of the Method- Parameters:
e- PARAM- Returns:
- Returns
-
inputstream_to_string
public static java.lang.String inputstream_to_string(java.io.InputStream in) throws java.io.IOExceptionDescription of the Method- Parameters:
in- PARAM- Returns:
- Returns
- Throws:
java.io.IOException- Throws
-
file_to_string
public static java.lang.String file_to_string(java.io.File file) throws java.io.FileNotFoundException, java.io.IOExceptionDescription of the Method- Parameters:
file- PARAM- Returns:
- Returns
- Throws:
java.io.FileNotFoundException- Throwsjava.io.IOException- Throws
-
replace
public static java.lang.String replace(java.lang.String source, java.lang.String target, java.lang.String replacement)Description of the Method- Parameters:
source- PARAMtarget- PARAMreplacement- PARAM- Returns:
- Returns
-
vector_to_strings
public static java.lang.String[] vector_to_strings(java.util.Vector v)
Description of the Method- Parameters:
v- PARAM- Returns:
- Returns
-
list_to_strings
public static java.lang.String[] list_to_strings(java.util.List l)
Description of the Method- Parameters:
l- PARAM- Returns:
- Returns
-
toList
public static java.util.List toList(java.lang.Object[] array)
Description of the Method- Parameters:
array- PARAM- Returns:
- Returns
-
to_list
public static java.util.List to_list(java.lang.Object[] array)
Description of the Method- Parameters:
array- PARAM- Returns:
- Returns
-
sleep
public static void sleep(long msec)
Description of the Method- Parameters:
msec- PARAM
-
center
public static void center(javax.swing.JFrame frame)
Description of the Method- Parameters:
frame- PARAM
-
center
public static void center(javax.swing.JDialog frame)
Description of the Method- Parameters:
frame- PARAM
-
isNumber
public static boolean isNumber(java.lang.String str)
Gets the number attribute of the Util class- Parameters:
str- PARAM- Returns:
- The number value
-
-