Java Doc for SysProperties.java in  » Database-DBMS » h2database » org » h2 » constant » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database DBMS » h2database » org.h2.constant 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.h2.constant.SysProperties

SysProperties
public class SysProperties (Code)
The constants defined in this class are initialized from system properties. Those properties can be set when starting the virtual machine:
 java -Dh2.baseDir=/temp
 
They can be set within the application, but this must be done before loading any classes of this database (before loading the JDBC driver):
 System.setProperty("h2.baseDir", "/temp");
 


Field Summary
final public static  booleanALIAS_COLUMN_NAME
     System property h2.aliasColumnName (default: false).
When enabled, aliased columns (as in SELECT ID AS I FROM TEST) return the real table and column name in ResultSetMetaData.getTableName() and getColumnName().
final public static  StringALLOWED_CLASSES
     System property h2.allowedClasses (default: *).
Comma separated list of class names or prefixes.
final public static  booleanALLOW_BIG_DECIMAL_EXTENSIONS
     System property h2.allowBigDecimalExtensions (default: false).
When enabled, classes that extend BigDecimal are supported in PreparedStatement.setBigDecimal.
final public static  StringBIND_ADDRESS
     System property h2.bindAddress (default: *).
Comma separated list of class names or prefixes.
final public static  intCACHE_SIZE_DEFAULT
     System property h2.cacheSizeDefault (default: 16384).
The default cache size in KB.
final public static  intCACHE_SIZE_INDEX_DEFAULT
    
final public static  intCACHE_SIZE_INDEX_SHIFT
     System property h2.cacheSizeIndexShift (default: 3).
How many time the cache size value is divided by two to get the index cache size.
final public static  booleanCHECK
     System property h2.check (default: true).
Assertions in the database engine.
final public static  booleanCHECK2
     System property h2.check2 (default: true).
Additional assertions in the database engine.
final public static  StringCLIENT_TRACE_DIRECTORY
     System property h2.clientTraceDirectory (default: trace.db/).
Directory where the trace files of the JDBC client are stored (only for client / server).
final public static  intCOLLATOR_CACHE_SIZE
     System property h2.collatorCacheSize (default: 10000).
The cache size for collation keys (in elements).
final public static  intDATASOURCE_TRACE_LEVEL
     System property h2.dataSourceTraceLevel (default: 1).
The trace level of the data source implementation.
final public static  intDEFAULT_LOCK_MODE
     System property h2.defaultLockMode (default: 3).
The default value for the LOCK_MODE setting.
final public static  intDEFAULT_MAX_MEMORY_UNDO
     System property h2.defaultMaxMemoryUndo (default: 100000).
The default value for the MAX_MEMORY_UNDO setting.
final public static  intDEFAULT_MAX_OPERATION_MEMORY
     System property h2.defaultMaxOperationMemory (default: 100000).
The default for the setting MAX_OPERATION_MEMORY.
final public static  intEMERGENCY_SPACE_INITIAL
     System property h2.emergencySpaceInitial (default: 262144).
Size of 'reserve' file to detect disk full problems early.
final public static  intEMERGENCY_SPACE_MIN
     System property h2.emergencySpaceMin (default: 65536).
Minimum size of 'reserve' file.
final public static  StringFILE_ENCODING
     System property file.encoding (default: Cp1252).
It is usually set by the system and is the default encoding used for the RunScript and CSV tool.
final public static  StringFILE_SEPARATOR
     System property file.separator (default: /).
It is usually set by the system, and used to build absolute file names.
final public static  StringH2_COLLATOR_CACHE_SIZE
    
final public static  StringH2_LOG_DELETE_DELAY
    
final public static  StringH2_MAX_QUERY_TIMEOUT
    
final public static  intLARGE_RESULT_BUFFER_SIZE
     System property h2.largeResultBufferSize (default: 4096).
Buffer size for large result sets.
final public static  StringLINE_SEPARATOR
     System property line.separator (default: \n).
It is usually set by the system, and used by the script and trace tools.
final public static  booleanLOB_FILES_IN_DIRECTORIES
     System property h2.lobFilesInDirectories (default: false).
Store LOB files in subdirectories.
final public static  intLOB_FILES_PER_DIRECTORY
     System property h2.lobFilesPerDirectory (default: 256).
Maximum number of LOB files per directory.
final public static  booleanLOG_ALL_ERRORS
     System property h2.logAllErrors (default: false).
Write stack traces of any kind of error to a file.
final public static  StringLOG_ALL_ERRORS_FILE
     System property h2.logAllErrorsFile (default: h2errors.txt).
File name to log errors.
final public static  intMAX_FILE_RETRY
     System property h2.maxFileRetry (default: 16).
Number of times to retry file delete and rename.
final public static  intMAX_MEMORY_ROWS_DISTINCT
     System property h2.maxMemoryRowsDistinct (default: Integer.MAX_VALUE).
The maximum number of rows kept in-memory for SELECT DISTINCT queries.
final public static  intMAX_QUERY_TIMEOUT
     System property h2.maxQueryTimeout (default: 0).
The maximum timeout of a query.
final public static  intMIN_COLUMN_NAME_MAP
     System property h2.minColumnNameMap (default: 3).
The minimum number of columns where a hash table is created when result set methods with column name (instead of column index) parameter are called.
final public static  intMIN_WRITE_DELAY
     System property h2.minWriteDelay (default: 5).
The minimum write delay that causes commits to be delayed.
final public static  booleanOBJECT_CACHE
     System property h2.objectCache (default: true).
Cache commonly used objects (integers, strings).
final public static  intOBJECT_CACHE_MAX_PER_ELEMENT_SIZE
     System property h2.objectCacheMaxPerElementSize (default: 4096).
Maximum size of an object in the cache.
final public static  intOBJECT_CACHE_SIZE
     System property h2.objectCacheSize (default: 1024).
Maximum size of an object in the cache.
final public static  booleanOPTIMIZE_DISTINCT
     System property h2.optimizeDistinct (default: true).
Improve the performance of simple DISTINCT queries if an index is available for the given column.
final public static  booleanOPTIMIZE_DROP_DEPENDENCIES
     System property h2.optimizeDropDependencies (default: true).
Improve the performance of DROP and DROP ALL OBJECTS by quicker scanning if other objects depend on this object.
final public static  booleanOPTIMIZE_EVALUATABLE_SUBQUERIES
     System property h2.optimizeEvaluatableSubqueries (default: true).
Optimize subqueries that are not dependent on the outer query.
final public static  booleanOPTIMIZE_GROUP_SORTED
     System property h2.optimizeGroupSorted (default: false).
Optimize GROUP BY queries if an index can be used that matches the group by columns.
final public static  booleanOPTIMIZE_IN
     System property h2.optimizeIn (default: true).
Optimize IN(...) comparisons.
final public static  booleanOPTIMIZE_IN_JOIN
     System property h2.optimizeInJoin (default: false).
Optimize IN(...) comparisons by converting them to inner joins.
final public static  booleanOPTIMIZE_MIN_MAX
     System property h2.optimizeMinMax (default: true).
Optimize MIN and MAX aggregate functions.
final public static  booleanOPTIMIZE_NOT
     System property h2.optimizeNot (default: true).
Optimize NOT conditions by removing the NOT and inverting the condition.
final public static  booleanOPTIMIZE_SUBQUERY_CACHE
     System property h2.optimizeSubqueryCache (default: true).
Cache subquery results.
final public static  booleanOPTIMIZE_TWO_EQUALS
     System property h2.optimizeTwoEquals (default: true).
Optimize expressions of the form A=B AND B=1.
final public static  booleanOVERFLOW_EXCEPTIONS
     System property h2.overflowExceptions (default: true).
Throw an exception on integer overflows.
final public static  booleanRECOMPILE_ALWAYS
     System property h2.recompileAlways (default: false).
Always recompile prepared statements.
final public static  intREDO_BUFFER_SIZE
     System property h2.redoBufferSize (default: 262144).
Size of the redo buffer (used at startup when recovering).
final public static  intREUSE_SPACE_AFTER
     System property h2.reuseSpaceAfter (default: 16).
Reuse space in database files after this many pages are free.
final public static  booleanREUSE_SPACE_QUICKLY
     System property h2.reuseSpaceQuickly (default: true).
Reuse space in database files quickly.
final public static  intSERVER_CACHED_OBJECTS
     System property h2.serverCachedObjects (default: 64).
TCP Server: number of cached objects per session.
final public static  intSERVER_RESULT_SET_FETCH_SIZE
     System property h2.serverResultSetFetchSize (default: 100).
The default result set fetch size when using the server mode.
final public static  booleanTRACE_IO
     System property h2.traceIO (default: false).
Trace all I/O operations.
final public static  StringUSER_HOME
     System property user.home (default: empty string).
It is usually set by the system, and used as a replacement for ~ in file names.
public static  booleanlobCloseBetweenReads
     System property h2.lobCloseBetweenReads (default: false).
Close LOB files between read operations.
public static  booleanrunFinalize
     System property h2.runFinalize (default: true).
Run finalizers to detect unclosed connections.
public static  StringscriptDirectory
     System property h2.scriptDirectory (default: empty string).
Relative or absolute directory where the script files are stored to or read from.


Method Summary
public static  StringgetBaseDir()
    
public static  intgetCollatorCacheSize()
    
public static  intgetIntSetting(String name, int defaultValue)
    
public static  intgetLogFileDeleteDelay()
    
public static  intgetMaxQueryTimeout()
    
public static  StringgetStringSetting(String name, String defaultValue)
    
public static  voidsetBaseDir(String dir)
    

Field Detail
ALIAS_COLUMN_NAME
final public static boolean ALIAS_COLUMN_NAME(Code)
System property h2.aliasColumnName (default: false).
When enabled, aliased columns (as in SELECT ID AS I FROM TEST) return the real table and column name in ResultSetMetaData.getTableName() and getColumnName(). This is disabled by default for compatibility with other databases (HSQLDB, Apache Derby, PostgreSQL, some version of MySQL).



ALLOWED_CLASSES
final public static String ALLOWED_CLASSES(Code)
System property h2.allowedClasses (default: *).
Comma separated list of class names or prefixes.



ALLOW_BIG_DECIMAL_EXTENSIONS
final public static boolean ALLOW_BIG_DECIMAL_EXTENSIONS(Code)
System property h2.allowBigDecimalExtensions (default: false).
When enabled, classes that extend BigDecimal are supported in PreparedStatement.setBigDecimal.



BIND_ADDRESS
final public static String BIND_ADDRESS(Code)
System property h2.bindAddress (default: *).
Comma separated list of class names or prefixes.



CACHE_SIZE_DEFAULT
final public static int CACHE_SIZE_DEFAULT(Code)
System property h2.cacheSizeDefault (default: 16384).
The default cache size in KB.



CACHE_SIZE_INDEX_DEFAULT
final public static int CACHE_SIZE_INDEX_DEFAULT(Code)
INTERNAL



CACHE_SIZE_INDEX_SHIFT
final public static int CACHE_SIZE_INDEX_SHIFT(Code)
System property h2.cacheSizeIndexShift (default: 3).
How many time the cache size value is divided by two to get the index cache size. The index cache size is calculated like this: cacheSize >> cacheSizeIndexShift.



CHECK
final public static boolean CHECK(Code)
System property h2.check (default: true).
Assertions in the database engine.



CHECK2
final public static boolean CHECK2(Code)
System property h2.check2 (default: true).
Additional assertions in the database engine.



CLIENT_TRACE_DIRECTORY
final public static String CLIENT_TRACE_DIRECTORY(Code)
System property h2.clientTraceDirectory (default: trace.db/).
Directory where the trace files of the JDBC client are stored (only for client / server).



COLLATOR_CACHE_SIZE
final public static int COLLATOR_CACHE_SIZE(Code)
System property h2.collatorCacheSize (default: 10000).
The cache size for collation keys (in elements). Used when a collator has been set for the database.



DATASOURCE_TRACE_LEVEL
final public static int DATASOURCE_TRACE_LEVEL(Code)
System property h2.dataSourceTraceLevel (default: 1).
The trace level of the data source implementation. Default is 1 for error.



DEFAULT_LOCK_MODE
final public static int DEFAULT_LOCK_MODE(Code)
System property h2.defaultLockMode (default: 3).
The default value for the LOCK_MODE setting.



DEFAULT_MAX_MEMORY_UNDO
final public static int DEFAULT_MAX_MEMORY_UNDO(Code)
System property h2.defaultMaxMemoryUndo (default: 100000).
The default value for the MAX_MEMORY_UNDO setting.



DEFAULT_MAX_OPERATION_MEMORY
final public static int DEFAULT_MAX_OPERATION_MEMORY(Code)
System property h2.defaultMaxOperationMemory (default: 100000).
The default for the setting MAX_OPERATION_MEMORY.



EMERGENCY_SPACE_INITIAL
final public static int EMERGENCY_SPACE_INITIAL(Code)
System property h2.emergencySpaceInitial (default: 262144).
Size of 'reserve' file to detect disk full problems early.



EMERGENCY_SPACE_MIN
final public static int EMERGENCY_SPACE_MIN(Code)
System property h2.emergencySpaceMin (default: 65536).
Minimum size of 'reserve' file.



FILE_ENCODING
final public static String FILE_ENCODING(Code)
System property file.encoding (default: Cp1252).
It is usually set by the system and is the default encoding used for the RunScript and CSV tool.



FILE_SEPARATOR
final public static String FILE_SEPARATOR(Code)
System property file.separator (default: /).
It is usually set by the system, and used to build absolute file names.



H2_COLLATOR_CACHE_SIZE
final public static String H2_COLLATOR_CACHE_SIZE(Code)
INTERNAL



H2_LOG_DELETE_DELAY
final public static String H2_LOG_DELETE_DELAY(Code)
INTERNAL



H2_MAX_QUERY_TIMEOUT
final public static String H2_MAX_QUERY_TIMEOUT(Code)
INTERNAL



LARGE_RESULT_BUFFER_SIZE
final public static int LARGE_RESULT_BUFFER_SIZE(Code)
System property h2.largeResultBufferSize (default: 4096).
Buffer size for large result sets. Set this value to 0 to disable the buffer.



LINE_SEPARATOR
final public static String LINE_SEPARATOR(Code)
System property line.separator (default: \n).
It is usually set by the system, and used by the script and trace tools.



LOB_FILES_IN_DIRECTORIES
final public static boolean LOB_FILES_IN_DIRECTORIES(Code)
System property h2.lobFilesInDirectories (default: false).
Store LOB files in subdirectories.



LOB_FILES_PER_DIRECTORY
final public static int LOB_FILES_PER_DIRECTORY(Code)
System property h2.lobFilesPerDirectory (default: 256).
Maximum number of LOB files per directory.



LOG_ALL_ERRORS
final public static boolean LOG_ALL_ERRORS(Code)
System property h2.logAllErrors (default: false).
Write stack traces of any kind of error to a file.



LOG_ALL_ERRORS_FILE
final public static String LOG_ALL_ERRORS_FILE(Code)
System property h2.logAllErrorsFile (default: h2errors.txt).
File name to log errors.



MAX_FILE_RETRY
final public static int MAX_FILE_RETRY(Code)
System property h2.maxFileRetry (default: 16).
Number of times to retry file delete and rename.



MAX_MEMORY_ROWS_DISTINCT
final public static int MAX_MEMORY_ROWS_DISTINCT(Code)
System property h2.maxMemoryRowsDistinct (default: Integer.MAX_VALUE).
The maximum number of rows kept in-memory for SELECT DISTINCT queries. If more than this number of rows are in a result set, a temporary table is used.



MAX_QUERY_TIMEOUT
final public static int MAX_QUERY_TIMEOUT(Code)
System property h2.maxQueryTimeout (default: 0).
The maximum timeout of a query. The default is 0, meaning no limit.



MIN_COLUMN_NAME_MAP
final public static int MIN_COLUMN_NAME_MAP(Code)
System property h2.minColumnNameMap (default: 3).
The minimum number of columns where a hash table is created when result set methods with column name (instead of column index) parameter are called.



MIN_WRITE_DELAY
final public static int MIN_WRITE_DELAY(Code)
System property h2.minWriteDelay (default: 5).
The minimum write delay that causes commits to be delayed.



OBJECT_CACHE
final public static boolean OBJECT_CACHE(Code)
System property h2.objectCache (default: true).
Cache commonly used objects (integers, strings).



OBJECT_CACHE_MAX_PER_ELEMENT_SIZE
final public static int OBJECT_CACHE_MAX_PER_ELEMENT_SIZE(Code)
System property h2.objectCacheMaxPerElementSize (default: 4096).
Maximum size of an object in the cache.



OBJECT_CACHE_SIZE
final public static int OBJECT_CACHE_SIZE(Code)
System property h2.objectCacheSize (default: 1024).
Maximum size of an object in the cache.



OPTIMIZE_DISTINCT
final public static boolean OPTIMIZE_DISTINCT(Code)
System property h2.optimizeDistinct (default: true).
Improve the performance of simple DISTINCT queries if an index is available for the given column. The optimization is used if:
  • The select is a single column query without condition
  • The query contains only one table, and no group by
  • There is only one table involved
  • There is an ascending index on the column
  • The selectivity of the column is below 20



OPTIMIZE_DROP_DEPENDENCIES
final public static boolean OPTIMIZE_DROP_DEPENDENCIES(Code)
System property h2.optimizeDropDependencies (default: true).
Improve the performance of DROP and DROP ALL OBJECTS by quicker scanning if other objects depend on this object.



OPTIMIZE_EVALUATABLE_SUBQUERIES
final public static boolean OPTIMIZE_EVALUATABLE_SUBQUERIES(Code)
System property h2.optimizeEvaluatableSubqueries (default: true).
Optimize subqueries that are not dependent on the outer query.



OPTIMIZE_GROUP_SORTED
final public static boolean OPTIMIZE_GROUP_SORTED(Code)
System property h2.optimizeGroupSorted (default: false).
Optimize GROUP BY queries if an index can be used that matches the group by columns.



OPTIMIZE_IN
final public static boolean OPTIMIZE_IN(Code)
System property h2.optimizeIn (default: true).
Optimize IN(...) comparisons.



OPTIMIZE_IN_JOIN
final public static boolean OPTIMIZE_IN_JOIN(Code)
System property h2.optimizeInJoin (default: false).
Optimize IN(...) comparisons by converting them to inner joins.



OPTIMIZE_MIN_MAX
final public static boolean OPTIMIZE_MIN_MAX(Code)
System property h2.optimizeMinMax (default: true).
Optimize MIN and MAX aggregate functions.



OPTIMIZE_NOT
final public static boolean OPTIMIZE_NOT(Code)
System property h2.optimizeNot (default: true).
Optimize NOT conditions by removing the NOT and inverting the condition.



OPTIMIZE_SUBQUERY_CACHE
final public static boolean OPTIMIZE_SUBQUERY_CACHE(Code)
System property h2.optimizeSubqueryCache (default: true).
Cache subquery results.



OPTIMIZE_TWO_EQUALS
final public static boolean OPTIMIZE_TWO_EQUALS(Code)
System property h2.optimizeTwoEquals (default: true).
Optimize expressions of the form A=B AND B=1. In this case, AND A=1 is added so an index on A can be used.



OVERFLOW_EXCEPTIONS
final public static boolean OVERFLOW_EXCEPTIONS(Code)
System property h2.overflowExceptions (default: true).
Throw an exception on integer overflows.



RECOMPILE_ALWAYS
final public static boolean RECOMPILE_ALWAYS(Code)
System property h2.recompileAlways (default: false).
Always recompile prepared statements.



REDO_BUFFER_SIZE
final public static int REDO_BUFFER_SIZE(Code)
System property h2.redoBufferSize (default: 262144).
Size of the redo buffer (used at startup when recovering).



REUSE_SPACE_AFTER
final public static int REUSE_SPACE_AFTER(Code)
System property h2.reuseSpaceAfter (default: 16).
Reuse space in database files after this many pages are free.



REUSE_SPACE_QUICKLY
final public static boolean REUSE_SPACE_QUICKLY(Code)
System property h2.reuseSpaceQuickly (default: true).
Reuse space in database files quickly.



SERVER_CACHED_OBJECTS
final public static int SERVER_CACHED_OBJECTS(Code)
System property h2.serverCachedObjects (default: 64).
TCP Server: number of cached objects per session.



SERVER_RESULT_SET_FETCH_SIZE
final public static int SERVER_RESULT_SET_FETCH_SIZE(Code)
System property h2.serverResultSetFetchSize (default: 100).
The default result set fetch size when using the server mode.



TRACE_IO
final public static boolean TRACE_IO(Code)
System property h2.traceIO (default: false).
Trace all I/O operations.



USER_HOME
final public static String USER_HOME(Code)
System property user.home (default: empty string).
It is usually set by the system, and used as a replacement for ~ in file names.



lobCloseBetweenReads
public static boolean lobCloseBetweenReads(Code)
System property h2.lobCloseBetweenReads (default: false).
Close LOB files between read operations.



runFinalize
public static boolean runFinalize(Code)
System property h2.runFinalize (default: true).
Run finalizers to detect unclosed connections.



scriptDirectory
public static String scriptDirectory(Code)
System property h2.scriptDirectory (default: empty string).
Relative or absolute directory where the script files are stored to or read from.





Method Detail
getBaseDir
public static String getBaseDir()(Code)
INTERNAL



getCollatorCacheSize
public static int getCollatorCacheSize()(Code)
INTERNAL



getIntSetting
public static int getIntSetting(String name, int defaultValue)(Code)
INTERNAL



getLogFileDeleteDelay
public static int getLogFileDeleteDelay()(Code)
INTERNAL



getMaxQueryTimeout
public static int getMaxQueryTimeout()(Code)
INTERNAL



getStringSetting
public static String getStringSetting(String name, String defaultValue)(Code)
INTERNAL



setBaseDir
public static void setBaseDir(String dir)(Code)
INTERNAL



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.