addExternalKey

addExternalKey(keyType:        PrimType;
              keyLength:       Integer;
              descending:      Boolean;
              caseInsensitive: Boolean) updating;

The addExternalKey method of the DynaDictionary class adds an external key specification to a dynamic dictionary.

Use the keyType to specify the primitive type for the key. (For more details, see "Pseudo Types" and "Passing Variable Parameters to Methods", in Chapter 1 of the JADE Developer’s Reference.)

For String, StringUtf8, and Binary keys, you must specify the keyLength parameter. This parameter is ignored for keys of other primitive types. Set the descending parameter to true if you want keys sorted in descending order and the caseInsensitive parameter to true if case-sensitivity is not required.

If you require multiple keys, call the addExternalKey method to define each key in sequence. To signify that all keys have been defined, call the endKeys method.

The following preconditions apply when adding keys to a dynamic dictionary.

The appropriate system exception is raised if any of these preconditions are violated.