name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'OPEN';
case 2:
return 'OPEN_FOLDER';
case 1:
return 'OPEN_MULTIPLE';
case 3:
return 'SAVE';
}
return _value.toString();
}