Enum is mysql specific, so, you cannot have an enum in your schema.xml.
If you don't want to create another table to store the different possible values, you can simulate an enum very easily.
Imagine you have a status column in you article table you want to be an enum with values like ('open', 'closed'). Simply declare the status column as integer and then (not tested):