[Home] [Help]
[Dependency Information]
| Object Name: | CDB_JAVA_METHODS |
|---|---|
| Object Type: | VIEW |
| Owner: | SYS |
| Subobject Name: | |
| Status: | VALID |
method information for all java classes in all containers
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| OWNER | VARCHAR2 | (30) | Yes | owner of the class |
| NAME | VARCHAR2 | (4000) | name of the class | |
| METHOD_INDEX | NUMBER | the index of the method | ||
| METHOD_NAME | VARCHAR2 | (4000) | the name of the method at METHOD_INDEX | |
| ACCESSIBILITY | VARCHAR2 | (9) | the accessiblity of the method, public/private/protected/null(i.e. package) | |
| IS_STATIC | VARCHAR2 | (3) | is the method a static method? | |
| IS_FINAL | VARCHAR2 | (3) | is the method a final method? | |
| IS_SYNCHRONIZED | VARCHAR2 | (3) | is the method a synchronized method? | |
| HAS_VARARGS | VARCHAR2 | (3) | does the method have a variable number of arguments? | |
| IS_NATIVE | VARCHAR2 | (3) | is the method a native method? | |
| IS_ABSTRACT | VARCHAR2 | (3) | is the method an abstract method? | |
| IS_STRICTFP | VARCHAR2 | (3) | is the method declared strictfp? | |
| IS_SYNTHETIC | VARCHAR2 | (3) | is the method generated by the compiler? | |
| ARGUMENTS | NUMBER | number of arguments of the method | ||
| THROWS | NUMBER | number of exceptions thrown by the method | ||
| ARRAY_DEPTH | NUMBER | array depth of the return type of the method | ||
| BASE_TYPE | VARCHAR2 | (7) | base type of the return type of the field | |
| RETURN_CLASS | VARCHAR2 | (4000) | if base_type is class, this gives the actual class name of the return value | |
| IS_COMPILED | VARCHAR2 | (3) | has the method been compiled by the just in time compiler? | |
| CON_ID | NUMBER | container id |
Cut, paste (and edit) the following text to query this object:
SELECT OWNER
, NAME
, METHOD_INDEX
, METHOD_NAME
, ACCESSIBILITY
, IS_STATIC
, IS_FINAL
, IS_SYNCHRONIZED
, HAS_VARARGS
, IS_NATIVE
, IS_ABSTRACT
, IS_STRICTFP
, IS_SYNTHETIC
, ARGUMENTS
, THROWS
, ARRAY_DEPTH
, BASE_TYPE
, RETURN_CLASS
, IS_COMPILED
, CON_ID
FROM SYS.CDB_JAVA_METHODS;
SYS.CDB_JAVA_METHODS does not reference any database object
SYS.CDB_JAVA_METHODS is referenced by following:
PUBLIC
CDB_JAVA_METHODS
|
|
|
|