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