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

technology.dice.dicewhere.downloader.md5.MD5Checksum Maven / Gradle / Ivy

There is a newer version: 1.3.12
Show newest version
package technology.dice.dicewhere.downloader.md5;

public class MD5Checksum {
  private String md5;

  public static MD5Checksum of(String md5) {
    return new MD5Checksum(md5);
  }

  private MD5Checksum(String md5) {
    this.md5 = md5;
  }

  public boolean matches(String md5) {
    return this.matches(MD5Checksum.of(md5));
  }

  public boolean matches(MD5Checksum md5) {
    if (md5 == null) {
      return false;
    }
    return this.md5.equalsIgnoreCase(md5.md5);
  }

  public String stringFormat() {
    return this.md5.toLowerCase();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy