static bool AreIntvaluesEqual(LabelEnumeration e1, int intValue)
 {
     return (int) e1 == intValue;
 }
 static int AddIntValues(LabelEnumeration e1, LabelEnumeration e2)
 {
     return (int) e1 + (int) e2;
 }