static String valueToName(int value) { switch (value) { case 0: return 'Post'; case 1: return 'React'; case 2: return 'Comment'; } return ''; }