io.api.etherscan.model.query.LogOp 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.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