name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 2:
return 'DOCUMENT_BROWSER';
case 0:
return 'DOCUMENT_VIEWER';
case 1:
return 'WEB_BROWSER';
}
return _value.toString();
}