io.api.etherscan.model.Block 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;
import com.google.gson.annotations.Expose;
import io.api.etherscan.util.BasicUtils;
import java.math.BigInteger;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 28.10.2018
*/
public class Block {
private long blockNumber;
private BigInteger blockReward;
private String timeStamp;
@Expose(serialize = false, deserialize = false)
private LocalDateTime _timeStamp;
//
public long getBlockNumber() {
return blockNumber;
}
public LocalDateTime getTimeStamp() {
if (_timeStamp == null && !BasicUtils.isEmpty(timeStamp))
_timeStamp = LocalDateTime.ofEpochSecond(Long.parseLong(timeStamp), 0, ZoneOffset.UTC);
return _timeStamp;
}
public BigInteger getBlockReward() {
return blockReward;
}
//
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
Block block = (Block) o;
return blockNumber == block.blockNumber;
}
@Override
public int hashCode() {
return (int) (blockNumber ^ (blockNumber >>> 32));
}
@Override
public String toString() {
return "Block{" +
"blockNumber=" + blockNumber +
", blockReward=" + blockReward +
", timeStamp='" + timeStamp + '\'' +
", _timeStamp=" + _timeStamp +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy