name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'BORDERLESS';
case 2:
return 'CLOSABLE';
case 64:
return 'DOC_MODAL_WINDOW';
case 16384:
return 'FULLSCREEN';
case 32768:
return 'FULL_SIZE_CONTENT_VIEW';
case 8192:
return 'HUD_WINDOW';
case 4:
return 'MINIATURIZABLE';
case 128:
return 'NONACTIVATING_PANEL';
case 8:
return 'RESIZABLE';
case 1:
return 'TITLED';
case 16:
return 'UTILITY_WINDOW';
}
return _value.toString();
}