Final answer:
An enumerated type consists of a set of named values that are constants of the class.
Step-by-step explanation:
An enumerated type is a user-defined data type in programming languages, including Java, that consists of a set of named values. The values in an enumerated type are constants of the class. Enumerated types are often used when a program needs to represent a limited set of possible values.
For example, let's say we have an enumerated type called Color, which has three values: RED, GREEN, and BLUE. These values are constants of the Color class and can be used to represent different colors in a program.
Therefore, the correct answer to your question is c) Constants of the class.