---------------------------------------------------------------------
  ENUM: IntegrityType
 
   Types of integrity which may be recorded and/or found on the
   LogicalVolume.
 
  DEFINITIONS:
   integ_Unknown  (read-only) invalid value recorded in descriptor.
   integ_Open     Dirty.
   integ_Closed   Clean.
 
  USES:
   optional
 
  ABUSES:
   optional
 
  NOTES:
   optional
 
 ----------------------------------------------------------------------
  Private comments go here - will not be extracted into HTML.
 ----------------------------------------------------------------------
enum IntegrityType {
    integ_Unknown   =-1,
    integ_Open      = 0,
    integ_Closed    = 1
};

udf_eng@gr.hp.com