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

io.api.etherscan.model.Status Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package io.api.etherscan.model;

import java.util.Objects;

/**
 * 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 Objects.equals(errDescription, status.errDescription);
    }

    @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