startModeFromAndroidValues static method
Implementation
static ForegroundStartMode startModeFromAndroidValues(int value) {
switch (value) {
case 0:
return ForegroundStartMode.stickCompatibility;
case 2:
return ForegroundStartMode.notStick;
case 3:
return ForegroundStartMode.redeliverIntent;
case 1:
default:
return ForegroundStartMode.stick;
}
}