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