/*
 * ENUM: SE_MULTIPLICITY_ENUM
 *
 *   A list of the multiplicities allowed for the relationships defined
 *   in the SE_REQUIREMENT structure.  These relate directly to the
 *   multiplicity symbols shown on the diagrams of the SEDRIS Data
 *   Representation Model. See the examples for the SE_REQUIREMENT struct
 *   for more details.
 */
typedef enum
{
SE_EXACTLY_ONE = 1,
SE_ZERO_OR_ONE,
SE_ZERO_OR_MORE,
SE_ONE_OR_MORE,
SE_EXACTLY_N,
SE_BOUNDED_ARRAY, (notes)
SE_UNBOUNDED_ARRAY (notes)
} SE_MULTIPLICITY_ENUM;


Enumerator Notes

SE_BOUNDED_ARRAY

 at least N, at most M

SE_UNBOUNDED_ARRAY

 at least N, no upper bound
Prev: SE_MONTH_ENUM. Next: SE_OCTANT_ENUM. Up:Index