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


VIEW: SYS.DBA_JAVA_FIELDS

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

field information for 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
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
Query Text

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
FROM SYS.DBA_JAVA_FIELDS;

Dependencies

[top of page]

SYS.DBA_JAVA_FIELDS references the following:

SchemaSYS
TableUSER$
SYS.DBA_JAVA_FIELDS is referenced by following:

SchemaPUBLIC
SynonymDBA_JAVA_FIELDS