value method

String value()

Implementation

String value(){
  switch(this){
    case NUIPlatform.ANDROID: {
      return "Android";
    }
    case NUIPlatform.IOS: {
      return "iOS";
    }
    case NUIPlatform.WEB: {
      return "Web";
    }
    default: {
      return "Unknown";
    }
  }
}