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


VIEW: SYS.DBA_JAVA_CLASSES

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

class level information for all java classes

[View Source]

Columns
Name Datatype Length Mandatory Comments
OWNER VARCHAR2 (128) Yes owner of the class
NAME VARCHAR2 (4000)
name of the class
MAJOR NUMBER

the major version number of the class as defined in JVM specification
MINOR NUMBER

the minor version number of the class as defined in JVM specification
KIND VARCHAR2 (50)
type (class, interface, enum or annotation) of the class
ACCESSIBILITY VARCHAR2 (9)
the accessiblity of the class
IS_INNER VARCHAR2 (3)
is this class an inner class
IS_ABSTRACT VARCHAR2 (3)
is this an abstract class?
IS_FINAL VARCHAR2 (3)
is this an final class?
IS_STATIC VARCHAR2 (3)
is this a static inner class?
IS_STRICTFP VARCHAR2 (3)
is the class declared strictfp?
IS_SYNTHETIC VARCHAR2 (3)
is this an inner class generated by the compiler?
IS_DEBUG VARCHAR2 (3)
was the class compiled with debug information?
SOURCE VARCHAR2 (4000)
source file of the class
SUPER VARCHAR2 (4000)
super class of the class
OUTER VARCHAR2 (4000)
outer class of the class if the class is an inner class
Query Text

Cut, paste (and edit) the following text to query this object:


SELECT OWNER
,      NAME
,      MAJOR
,      MINOR
,      KIND
,      ACCESSIBILITY
,      IS_INNER
,      IS_ABSTRACT
,      IS_FINAL
,      IS_STATIC
,      IS_STRICTFP
,      IS_SYNTHETIC
,      IS_DEBUG
,      SOURCE
,      SUPER
,      OUTER
FROM SYS.DBA_JAVA_CLASSES;

Dependencies

[top of page]

SYS.DBA_JAVA_CLASSES references the following:

SchemaSYS
TableUSER$
SYS.DBA_JAVA_CLASSES is referenced by following:

SchemaPUBLIC
SynonymDBA_JAVA_CLASSES