Package nxt
Interface Block
-
public interface Block
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetBaseTarget()byte[]getBlockSignature()byte[]getBytes()java.math.BigIntegergetCumulativeDifficulty()byte[]getGenerationSignature()longgetGeneratorId()byte[]getGeneratorPublicKey()intgetHeight()longgetId()org.json.simple.JSONObjectgetJSONObject()longgetNextBlockId()byte[]getPayloadHash()intgetPayloadLength()byte[]getPreviousBlockHash()longgetPreviousBlockId()java.lang.StringgetStringId()intgetTimestamp()longgetTotalAmountNQT()longgetTotalFeeNQT()java.util.List<? extends Transaction>getTransactions()intgetVersion()
-
-
-
Method Detail
-
getVersion
int getVersion()
-
getId
long getId()
-
getStringId
java.lang.String getStringId()
-
getHeight
int getHeight()
-
getTimestamp
int getTimestamp()
-
getGeneratorId
long getGeneratorId()
-
getGeneratorPublicKey
byte[] getGeneratorPublicKey()
-
getPreviousBlockId
long getPreviousBlockId()
-
getPreviousBlockHash
byte[] getPreviousBlockHash()
-
getNextBlockId
long getNextBlockId()
-
getTotalAmountNQT
long getTotalAmountNQT()
-
getTotalFeeNQT
long getTotalFeeNQT()
-
getPayloadLength
int getPayloadLength()
-
getPayloadHash
byte[] getPayloadHash()
-
getTransactions
java.util.List<? extends Transaction> getTransactions()
-
getGenerationSignature
byte[] getGenerationSignature()
-
getBlockSignature
byte[] getBlockSignature()
-
getBaseTarget
long getBaseTarget()
-
getCumulativeDifficulty
java.math.BigInteger getCumulativeDifficulty()
-
getBytes
byte[] getBytes()
-
getJSONObject
org.json.simple.JSONObject getJSONObject()
-
-