Array Exceptions

The following are array features in Java that are not in the Cisco Unified CCX Expression Language:
  • As opposed to the Java language, a trailing comma may not appear after the last expression.

  • As opposed to the Java programming language, the [] may not appear as part of the declarator for a particular variable as in this example:

    byte matrix[];

This declaration would be valid in the Java programming language but in the Expression Language, it must be written as follows:

byte[] matrix;