name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 3:
return 'ALWAYS';
case 0:
return 'DEFAULT';
case 2:
return 'NEVER';
case 1:
return 'SHORT_EDGES';
}
return _value.toString();
}