| Enumeration Attribute Type | |
... (name_token [| name_token]*) ... This syntax limits the possible values of the given attribute to one of the name tokens from the provided list: <!ELEMENT door EMPTY>
<!ATTLIST door
state (open | closed | missing) "open">
. . .
<door state="closed"/> | |