Capitalization         

Method names in Java start with an initial lowercase letter and the first letter of every embedded word in uppercase, whereas method names in .NET follow a different convention in which the initial letter of every word in a method name is always uppercase.

For example:

 

Expert API for Java Expert API for .NET
mySess.getGlobalEntityInstance(); mySess.GetGlobalEntityInstance();

 

When using the Java Guide to the Oracle Determinations Engine API, it is important to remember to capitalize the first letter of each method name.