com.unstoppabledomains.resolution.Uttilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unstoppable-resolution Show documentation
Show all versions of unstoppable-resolution Show documentation
Resolution library that talks with etherium .crypto registry to resolve various information attached to .crypto domain
package com.unstoppabledomains.resolution;
class Utilities {
static boolean isNull(String value) {
return (value.equals("0x0000000000000000000000000000000000000000") || value == null || value.equals("0x")
|| value.equals("") || value.length() == 0);
}
}