Skip to content

Instantly share code, notes, and snippets.

@wangerekaharun
Created August 20, 2019 21:49
Show Gist options
  • Save wangerekaharun/26daf993328b89cec51a0691036c7e32 to your computer and use it in GitHub Desktop.
Save wangerekaharun/26daf993328b89cec51a0691036c7e32 to your computer and use it in GitHub Desktop.
fun setStatus(status : String) : Int{
if( status == "active"){
return 1
}
if (status == "inActive"){
return 2
}
if (status == "notSet"){
return 3
}
return 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment