An enum type is considered to be a type which possesses fixed constants set in its fields. Few common examples are the week days and compass directions (values of EAST, WEST, NORTH & SOUTH). Enum type fields comprises of uppercase letters, as they are constants. Enum keywords define the enum type, in Java programming language. For example, enum type of week days shall be specified like this: Java Code: public enum Day { SUNDAY, MONDAY, TUESDAY, WEDNESDAY, ...
public enum Day { SUNDAY, MONDAY, TUESDAY, WEDNESDAY,
thanks...
sorry for all the questions
thanks...
06-14-2013, 02:22 PM in gbonecapone