Definitions for "Enumerated Type" Add To Word List
Login or Register  | Word Lists | Search History

a common Java idiom where a class has a constant (small) number of immutable instances
Helpful?           0
a datatype containing a fixed set of constant values
Helpful?           0
a data type with user-specified values
Helpful?           0
a discrete type and thus it is compatible with the Indexes generic formal data type parameter
Helpful?           0
an abstract type the values of which are explicitly specified
Helpful?           0
an identifier of which option is selected from a set, e
Helpful?           0
a reference type with an unrestricted set of values
Helpful?           0
a set of constant integer values denoted by identifiers
Helpful?           0
a type in which the programmer designs the set of values that make up that type
Helpful?           0
a user-defined integer type
Helpful?           0
A type whose legal values consist of a fixed set of constants.
Helpful?           0
In computer programming, an enumerated type is an abstract data type, each of whose values take on exactly one of a finite set of identifiers chosen by the programmer. Enumerated types are typically used for categorical variables (like the suit of a card), which do not have any numerical order. At run-time, enumerated types are often implemented using integers (each identifier has a distinct integer value).
Helpful?           0