What is the Java syntax for an enumeration?

Here's the VB equiv. of what I want:
VB Code:
  1. Private Enum DoorMessage
  2.    CLOSE_FAST = 1
  3.    CLOSE_SLOW = 2
  4.    OPEN_FAST = 3
  5.    OPEN_SLOW = 4
  6. End Enum