Implementation
String get label {
switch (this) {
case InstallationMethod.a1:
return 'A1: Tubo empotrado (Aislado)';
case InstallationMethod.a2:
return 'A2: Tubo empotrado (Multiconductor)';
case InstallationMethod.b1:
return 'B1: Tubo superficie';
case InstallationMethod.b2:
return 'B2: Tubo superficie (Multiconductor)';
case InstallationMethod.c:
return 'C: Directo sobre pared';
case InstallationMethod.d:
return 'D: Enterrado'; // Ground
case InstallationMethod.e:
return 'E: Aire libre (Bandeja perforada)';
case InstallationMethod.f:
return 'F: Aire libre (Bandeja vertical/contacto)';
}
}