encode static method
Implementation
static String encode(StateToUpdate value) {
switch (value) {
case StateToUpdate.value:
return 'VALUE';
case StateToUpdate.visible:
return 'VISIBLE';
case StateToUpdate.readonly:
return 'READONLY';
case StateToUpdate.clazz:
return 'CLAZZ';
case StateToUpdate.required:
return 'REQUIRED';
}
}