2.186 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

  • DBA_JAVA_INNERS displays information about inner classes referred to by all stored Java classes in the database.

  • USER_JAVA_INNERS displays information about inner classes referred to by the stored Java classes owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

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)

IS_STRICTFP

VARCHAR2(3)

Indicates whether the inner class is declared strictfp (YES) or not (NO)

IS_SYNTHETIC

VARCHAR2(3)

Indicates whether the inner class is generated by the compiler (YES) or not (NO)

IS_ENUM

VARCHAR2(3)

Indicates whether the inner class is an enum (YES) or not (NO)

IS_ANNOTATION

VARCHAR2(3)

Indicates whether the inner class is an annotation (YES) or not (NO)

KIND

VARCHAR2(50)

Type (class, interface, enum or annotation) of the inner class

ALL_QUALIFIERS

VARCHAR2(101)

Concatenation of accessibility, type and other attributes of the inner class