public cellReselectionInfoCommon_Type Decode(BitArrayInputStream input)
 {
     var type = new cellReselectionInfoCommon_Type();
     type.InitDefaults();
     var stream = new BitMaskStream(input, 1);
     const int nBits = 4;
     type.q_Hyst = (q_Hyst_Enum)input.ReadBits(nBits);
     if (stream.Read())
     {
         type.speedStateReselectionPars = speedStateReselectionPars_Type.PerDecoder.Instance.Decode(input);
     }
     return type;
 }
                public cellReselectionInfoCommon_Type Decode(BitArrayInputStream input)
                {
                    var type = new cellReselectionInfoCommon_Type();

                    type.InitDefaults();
                    var       stream = new BitMaskStream(input, 1);
                    const int nBits  = 4;

                    type.q_Hyst = (q_Hyst_Enum)input.readBits(nBits);
                    if (stream.Read())
                    {
                        type.speedStateReselectionPars = speedStateReselectionPars_Type.PerDecoder.Instance.Decode(input);
                    }
                    return(type);
                }