/// <summary>
 /// Prevent constructions for something other than the corresponding Enum.
 /// </summary>
 /// <param name="enum">The enum value to represent.</param>
 private RetrievableValue(RetrievableValuesEnum @enum)
 {
     this.Id           = (int)@enum;
     this.ValueMeaning = @enum.ToString();
 }