Number, DateTime, Bean, List Types removed

The Gosu language no longer contains the types Number, DateTime, Bean, or List. In earlier releases, these were type aliases for other types. In version 9.0, you must use new names for these types. Use the PolicyCenter upgrade tools to update all existing code in Studio to the new style automatically.

The following table lists what types to use for any new code that you write

Removed type

Replace with type

Number

java.lang.Double

DateTime

java.util.Date

Bean

Object

List

(when not qualified with a package)

For interfaces, replace with java.util.List.

For classes, replace with java.util.ArrayList

See also