name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'AUTOMATIC';
case 2:
return 'LINE';
case 1:
return 'NONE';
case 3:
return 'SHADOW';
}
return _value.toString();
}