All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.selendroid.server.common.model.ExternalStorageFile Maven / Gradle / Ivy

The newest version!
package io.selendroid.server.common.model;

public enum ExternalStorageFile {
  APP_CRASH_LOG("appcrash.log");

  private String fileName;

  private ExternalStorageFile(String fileName) {
    this.fileName = fileName;
  }

  public String getFileName() {
    return fileName;
  }

  @Override
  public String toString() {
    return fileName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy