io.api.etherscan.model.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
package io.api.etherscan.model;
/**
* Contract Execution Status
*
* @author GoodforGod
* @since 30.10.2018
*/
public class Status {
/**
* "0" = Pass , isError":"1" = Error during Contract Execution
*/
private int isError;
private String errDescription;
public boolean haveError() {
return isError == 1;
}
public String getErrDescription() {
return errDescription;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Status status = (Status) o;
if (isError != status.isError) return false;
return errDescription != null ? errDescription.equals(status.errDescription) : status.errDescription == null;
}
@Override
public int hashCode() {
int result = isError;
result = 31 * result + (errDescription != null ? errDescription.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "Status{" +
"isError=" + isError +
", errDescription='" + errDescription + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy