What is the purpose of the "enum" keyword in Java? Provide an example.
public enum Days { MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY; }
The "enum" keyword in Java is used to define a fixed set of constants. Enums enhance code readability and maintainability by providing a way to represent a predefined set of values.