Package nxt
Class AssetTransfer
- java.lang.Object
-
- nxt.AssetTransfer
-
public final class AssetTransfer extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AssetTransfer.Event
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
addListener(Listener<AssetTransfer> listener, AssetTransfer.Event eventType)
static DbIterator<AssetTransfer>
getAccountAssetTransfers(long accountId, int from, int to)
static DbIterator<AssetTransfer>
getAccountAssetTransfers(long accountId, long assetId, int from, int to)
static DbIterator<AssetTransfer>
getAllTransfers(int from, int to)
long
getAssetId()
static DbIterator<AssetTransfer>
getAssetTransfers(long assetId, int from, int to)
static int
getCount()
int
getHeight()
long
getId()
long
getQuantityQNT()
long
getRecipientId()
long
getSenderId()
int
getTimestamp()
static int
getTransferCount(long assetId)
static boolean
removeListener(Listener<AssetTransfer> listener, AssetTransfer.Event eventType)
-
-
-
Method Detail
-
getAllTransfers
public static DbIterator<AssetTransfer> getAllTransfers(int from, int to)
-
getCount
public static int getCount()
-
addListener
public static boolean addListener(Listener<AssetTransfer> listener, AssetTransfer.Event eventType)
-
removeListener
public static boolean removeListener(Listener<AssetTransfer> listener, AssetTransfer.Event eventType)
-
getAssetTransfers
public static DbIterator<AssetTransfer> getAssetTransfers(long assetId, int from, int to)
-
getAccountAssetTransfers
public static DbIterator<AssetTransfer> getAccountAssetTransfers(long accountId, int from, int to)
-
getAccountAssetTransfers
public static DbIterator<AssetTransfer> getAccountAssetTransfers(long accountId, long assetId, int from, int to)
-
getTransferCount
public static int getTransferCount(long assetId)
-
getId
public long getId()
-
getAssetId
public long getAssetId()
-
getSenderId
public long getSenderId()
-
getRecipientId
public long getRecipientId()
-
getQuantityQNT
public long getQuantityQNT()
-
getTimestamp
public int getTimestamp()
-
getHeight
public int getHeight()
-
-