@Override public ActionMode unmarshal(String v) throws Exception { return v != null ? ActionMode.getActionModeByCode(v) : null; }
@Override public String marshal(ActionMode v) throws Exception { return v != null ? v.getCode() : null; }