oracles object terminology is a bit different

classes are called types type defination is stored in the data dictionary that means classes are stored in the data dictonary
you should create a column/table of that object type to actually store data.

heres an example......

create type adddresstype
.........
..............

create table employee
name varchar2(20),
address addresstype.........

hth