DBA Data[Home] [Help] [Dependency Information]


VIEW: SYS.ALL_JAVA_METHODS

Object Details
Object Name: ALL_JAVA_METHODS
Object Type: VIEW
Owner: SYS
Subobject Name:
Status: VALID

method information for java classes accessible the current user

[View Source]

Columns
Name Datatype Length Mandatory Comments
OWNER VARCHAR2 (128) 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?
Query Text

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
FROM SYS.ALL_JAVA_METHODS;

Dependencies

[top of page]

SYS.ALL_JAVA_METHODS references the following:

SchemaSYS
TableJAVA$MC$
TableOBJAUTH$
TableSYSAUTH$
TableUSER$
SYS.ALL_JAVA_METHODS is referenced by following:

SchemaPUBLIC
SynonymALL_JAVA_METHODS