Hello I'm just wondering if there is anyone that could make sense of this java skeleton code table for an enum class. Table:
My code currently is this:
public enum SkyCondition
{
SUNNY,
SNOWY,
CLOUDY,
RAINY
}
Is that it? or am I supposed to incorporate the int
in some way?
Thank you.