Note
OceanBase Database does not support this view at present.
Purpose
The USER_TYPE_METHODS view displays the methods of the object types owned by the current user. Its columns are the same as those in ALL_TYPE_METHODS, except that it does not have the OWNER column.
Related views
DBA_TYPE_METHODS
ALL_TYPE_METHODS
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| TYPE_NAME | VARCHAR2(30) | NO | The name of the type. |
| METHOD_NAME | VARCHAR2(30) | NO | The name of the method. |
| METHOD_NO | NUMBER | NO | The method number, which is used to distinguish between overloaded methods. |
| METHOD_TYPE | VARCHAR2(6) | NO | The type of the method. Valid values: |
| PARAMETERS | NUMBER | NO | The number of method parameters. |
| RESULTS | NUMBER | NO | The number of results returned by the method. |
| FINAL | VARCHAR2(3) | NO | Indicates whether the method is final. Valid values: |
| INSTANTIABLE | VARCHAR2(3) | NO | Indicates whether the method is instantiable. Valid values: |
| OVERRIDING | VARCHAR2(3) | NO | Indicates whether the method is overriding a supertype method. Valid values: |
| INHERITED | VARCHAR2(3) | NO | Indicates whether the method is inherited from a supertype. Valid values: |