Enumerations are declared in a syntax similar to C enums. The basic template is:
enum enumerationtype {
one,
minusone = -1,
four = 4,
TWO = 2,
Three
}
The type ``enumerationtype'' may be later used in an event as a type. Integer
values will automatically be converted to their equivalent strings when
decoding Klogger's output.