Skip to content

Instantly share code, notes, and snippets.

@doom369
Created August 18, 2020 16:08
Show Gist options
  • Save doom369/85b96d637ce090f985d6fe143757e6f1 to your computer and use it in GitHub Desktop.
Save doom369/85b96d637ce090f985d6fe143757e6f1 to your computer and use it in GitHub Desktop.
public static WidgetProperty valueOfSwitch(String value) {
switch (value) {
case "LABEL" :
return WidgetProperty.LABEL;
case "COLOR" :
return WidgetProperty.COLOR;
case "ON_LABEL" :
return WidgetProperty.ON_LABEL;
case "OFF_LABEL" :
return WidgetProperty.OFF_LABEL;
case "MIN" :
return WidgetProperty.MIN;
case "MAX" :
return WidgetProperty.MAX;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment