[Home] [Help]
[Dependency Information]
| Object Name: | USER_JAVA_INNERS |
|---|---|
| Object Type: | VIEW |
| Owner: | SYS |
| Subobject Name: | |
| Status: | VALID |
list of inner classes referenced by a java class owned by user
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| NAME | VARCHAR2 | (4000) | name of the referencing class | |
| INNER_INDEX | NUMBER | index of the inner class among the inner classes referenced by the referencing class | ||
| SIMPLE_NAME | VARCHAR2 | (4000) | simple name of the inner class | |
| FULL_NAME | VARCHAR2 | (4000) | full name of the inner class | |
| ACCESSIBILITY | VARCHAR2 | (9) | accessibility (public, protected, private) of the inner class | |
| IS_STATIC | VARCHAR2 | (3) | is the inner class declared or implicitly static | |
| IS_FINAL | VARCHAR2 | (3) | is the inner class declared final | |
| IS_ABSTRACT | VARCHAR2 | (3) | is the inner class declared abstract | |
| IS_INTERFACE | VARCHAR2 | (3) | is the inner class an interface | |
| IS_STRICTFP | VARCHAR2 | (3) | is the inner class declared strictfp | |
| IS_SYNTHETIC | VARCHAR2 | (3) | is the inner class generated by the compiler | |
| IS_ENUM | VARCHAR2 | (3) | is the inner class an enum | |
| IS_ANNOTATION | VARCHAR2 | (3) | is the inner class an annotation | |
| 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 |
Cut, paste (and edit) the following text to query this object:
SELECT NAME
, INNER_INDEX
, SIMPLE_NAME
, FULL_NAME
, ACCESSIBILITY
, IS_STATIC
, IS_FINAL
, IS_ABSTRACT
, IS_INTERFACE
, IS_STRICTFP
, IS_SYNTHETIC
, IS_ENUM
, IS_ANNOTATION
, KIND
, ALL_QUALIFIERS
FROM SYS.USER_JAVA_INNERS;
PUBLIC
USER_JAVA_INNERS
|
|
|
|