|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.h2.java.lang.System
public class System
A simple java.lang.System implementation.
Field Summary | |
---|---|
static java.io.PrintStream |
out
The stdout stream. |
Constructor Summary | |
---|---|
System()
|
Method Summary | |
---|---|
static void |
arraycopy(byte[] src,
int srcPos,
byte[] dest,
int destPos,
int length)
Copy data from the source to the target. |
static void |
arraycopy(char[] src,
int srcPos,
char[] dest,
int destPos,
int length)
Copy data from the source to the target. |
static long |
nanoTime()
Get the current time in milliseconds since 1970-01-01. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static java.io.PrintStream out
Constructor Detail |
---|
public System()
Method Detail |
---|
public static void arraycopy(char[] src, int srcPos, char[] dest, int destPos, int length)
src
- the source arraysrcPos
- the first element in the source arraydest
- the destinationdestPos
- the first element in the destinationlength
- the number of element to copypublic static void arraycopy(byte[] src, int srcPos, byte[] dest, int destPos, int length)
src
- the source arraysrcPos
- the first element in the source arraydest
- the destinationdestPos
- the first element in the destinationlength
- the number of element to copypublic static long nanoTime()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |