[Home] [Help]
[Dependency Information]
| Object Name: | CDB_JAVA_FIELDS |
|---|---|
| Object Type: | VIEW |
| Owner: | SYS |
| Subobject Name: | |
| Status: | VALID |
field information for java classes in all containers
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| OWNER | VARCHAR2 | (30) | Yes | owner of the class |
| NAME | VARCHAR2 | (4000) | name of the class | |
| FIELD_INDEX | NUMBER | the index of the field | ||
| FIELD_NAME | VARCHAR2 | (4000) | the name of the field at FIELD_INDEX | |
| ACCESSIBILITY | VARCHAR2 | (9) | the accessiblity of the field, public/private/protected/null(i.e. package) | |
| IS_STATIC | VARCHAR2 | (3) | is the field a static field? | |
| IS_FINAL | VARCHAR2 | (3) | is the field a final field? | |
| IS_VOLATILE | VARCHAR2 | (3) | is the field volatile? | |
| IS_TRANSIENT | VARCHAR2 | (3) | is the field transient? | |
| IS_SYNTHETIC | VARCHAR2 | (3) | is the field generated by the compiler? | |
| IS_ENUM | VARCHAR2 | (3) | is the field a member of an enum? | |
| ARRAY_DEPTH | NUMBER | array depth of the type of the field | ||
| BASE_TYPE | VARCHAR2 | (7) | base type of the type of the field | |
| FIELD_CLASS | VARCHAR2 | (4000) | if base_type is class, this gives the actual class name of the base object | |
| CON_ID | NUMBER | container id |
Cut, paste (and edit) the following text to query this object:
SELECT OWNER
, NAME
, FIELD_INDEX
, FIELD_NAME
, ACCESSIBILITY
, IS_STATIC
, IS_FINAL
, IS_VOLATILE
, IS_TRANSIENT
, IS_SYNTHETIC
, IS_ENUM
, ARRAY_DEPTH
, BASE_TYPE
, FIELD_CLASS
, CON_ID
FROM SYS.CDB_JAVA_FIELDS;
SYS.CDB_JAVA_FIELDS does not reference any database object
SYS.CDB_JAVA_FIELDS is referenced by following:
PUBLIC
CDB_JAVA_FIELDS
|
|
|
|