startModeFromAndroidValues static method

ForegroundStartMode startModeFromAndroidValues(
  1. int value
)

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;
  }
}