Method name | Format | Method with the same signature |
---|---|---|
freeMemory method | public abstract long freeMemory(); | freeMemory method |
getName method | public abstract String getName(); | getName method |
newArray method (format 1) | public abstract Object newArray(Class type, int number); | newArray method (format 1) |
newArray method (format 2) | public abstract Object newArray(Class type, int[] dimensions); | newArray method (format 2) |
newInstance method (format 1) | public abstract Object newInstance(Class type); | newInstance method (format 1) |
newInstance method (format 2) | public abstract Object newInstance(Class type, Object... args); | newInstance method (format 2) |
newInstance method (format 3) | public abstract Object newInstance(java.lang.reflect.Constructor cons, Object... args); | newInstance method (format 3) |
setName method | public abstract void setName(String name); | setName method |
toString method | public abstract String toString(); | toString method |
totalMemory method | public abstract long totalMemory(); | totalMemory method |
usedMemory method | public abstract long usedMemory(); | usedMemory method |