Home Oracle Commands Oracle Data Dictionary
v$ Performance views

ALL_JAVA_METHODS

method information of stored java class accessible to user

Columns
   ___________________________
 
   OWNER
      owner of the stored java class
   NAME
      name of the java class
   METHOD_INDEX
      the index of the method
   METHOD_NAME
      the name of the field at METHOD_INDEX
   ACCESSIBILITY
      the accessiblity of the method,public/private/protected/null(i.e. package)
   IS_STATIC
      is the method a static method?
   IS_FINAL
      is the method a final method?
   IS_SYNCHRONIZED
      is the method a synchronized method? 
   IS_NATIVE
      is the method a native method?
   IS_ABSTRACT
      is the method an abstract method?
   IS_STRICT
      is the method a strict method?
   ARGUMENTS
      number of arguments of the method
   THROWS
      number of exceptions thrown by the method
   ARRAY_DEPTH
      array depth of the return type of the method
   BASE_TYPE
      base type of the return type of the field
   RETURN_CLASS
      if base_type is class,this gives the actual class name of the return value

Related:



Simon Sheppard
SS64.com