[Home] [Help]
[Dependency Information]
| Object Name: | USER_JAVA_CLASSES |
|---|---|
| Object Type: | VIEW |
| Owner: | SYS |
| Subobject Name: | |
| Status: | VALID |
class level information for java classes owned by the current user
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| 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 |
Cut, paste (and edit) the following text to query this object:
SELECT NAME
, MAJOR
, MINOR
, KIND
, ACCESSIBILITY
, IS_INNER
, IS_ABSTRACT
, IS_FINAL
, IS_STATIC
, IS_STRICTFP
, IS_SYNTHETIC
, IS_DEBUG
, SOURCE
, SUPER
, OUTER
FROM SYS.USER_JAVA_CLASSES;
PUBLIC
USER_JAVA_CLASSES
|
|
|
|