public String toString()

in java/remoteprovisioning/DeviceInfo.java [178:200]


  public String toString() {
    StringBuilder str = new StringBuilder();
    str.append("Device Info:");
    str.append("\nVersion: ").append(mVersion);
    str.append("Verified Info:");
    str.append("\n\tBrand: ").append(this.getBrand());
    str.append("\n\tManufacturer: ").append(this.getManufacturer());
    str.append("\n\tProduct: ").append(this.getProduct());
    str.append("\n\tModel: ").append(this.getModel());
    str.append("\n\tBoard: ").append(this.getBoard());
    str.append("\n\tDevice: ").append(this.getDevice());
    str.append("\n\tVerified Boot State: ").append(this.getVbState());
    str.append("\n\tBootloader State: ").append(this.getBootloaderState());
    str.append("\n\tVBMeta Digest: ").append(this.getVbmetaDigest());
    str.append("\n\tOS Version: ").append(this.getOsVersion());
    str.append("\n\tSystem Patch Level: ").append(this.getSystemPatchLevel());
    str.append("\n\tBoot Patch Level: ").append(this.getBootPatchLevel());
    str.append("\n\tVendor Patch Level: ").append(this.getVendorPatchLevel());
    str.append("\n\tSecurity Level: ").append(this.getSecurityLevel());
    str.append("\nUnverified Info:");
    str.append("\n\tFingerprint: ").append(this.getFingerprint());
    return str.toString();
  }