
io.nem.sdk.model.blockchain.MerkelPathItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-core Show documentation
Show all versions of sdk-core Show documentation
sdk-core lib for NEM2 sdk Java
The newest version!
package io.nem.sdk.model.blockchain;
public class MerkelPathItem {
private final Integer position;
private final String hash;
/**
* Constructor
*
* @param position the position in the path.
* @param hash the hash.
*/
public MerkelPathItem(Integer position, String hash) {
this.position = position;
this.hash = hash;
}
/**
* Return position
*
* @return Integer
*/
public Integer getPosition() {
return this.position;
}
/**
* Return hash
*
* @return String
*/
public String getHash() {
return this.hash;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy