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

io.api.etherscan.model.query.LogOp Maven / Gradle / Ivy

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

/**
 * Part of The Event Log API
 *
 * @author GoodforGod
 * @since 31.10.2018
 */
public enum LogOp {

    AND("and"),
    OR("or");

    private final String operation;

    LogOp(String operation) {
        this.operation = operation;
    }

    public String getOperation() {
        return operation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy