Skip Headers
Oracle® Database Reference
10g Release 2 (10.2)

Part Number B14237-04
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
PDF · Mobi · ePub

ALL_JAVA_INNERS

ALL_JAVA_INNERS displays information about inner classes referred to by the stored Java classes accessible to the current user.

Related Views

Column Datatype NULL Description
OWNER VARCHAR2(30) NOT NULL Owner of the Java class
NAME VARCHAR2(4000)   Name of the Java class
INNER_INDEX NUMBER   Index of the referred inner class
SIMPLE_NAME VARCHAR2(4000)   Simple name of the referred inner class
FULL_NAME VARCHAR2(4000)   Full name of the referred inner class
ACCESSIBILITY VARCHAR2(9)   Accessibility of the referred inner class:
  • PUBLIC

  • PRIVATE

  • PROTECTED

IS_STATIC VARCHAR2(3)   Indicates whether the referred inner class is declared static in the source file (YES) or not (NO)
IS_FINAL VARCHAR2(3)   Indicates whether the referred inner class is declared final in the source file (YES) or not (NO)
IS_ABSTRACT VARCHAR2(3)   Indicates whether the referred inner class is declared abstract in the source file (YES) or not (NO)
IS_INTERFACE VARCHAR2(3)   Indicates whether the referred inner class is declared interface in the source file (YES) or not (NO)