| IDL | Java |
| module | package |
| interface (non-abstract) | signature interface, helper class, holder class, operations interface |
| interface (abstract) | signature interface, helper class, holder class |
| long, unsigned long | int |
| long long, unsigned long long | long |
| short, unsigned short | short |
| octet | byte |
| char, wchar | char |
| float | float |
| double | double |
| boolean | boolean |
| string, wstring | java.lang.String |
| sequence, array | array |
| type declarations within interfaces | package |
| enum, struct, union | class |
| exception | class |
| typedef | helper classes |
| Any | org.omg.CORBA.Any |