Package nxt
Class Order.Ask
- java.lang.Object
-
- nxt.Order
-
- nxt.Order.Ask
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DbIterator<Order.Ask>
getAll()
static DbIterator<Order.Ask>
getAll(int from, int to)
static Order.Ask
getAskOrder(long orderId)
static DbIterator<Order.Ask>
getAskOrdersByAccount(long accountId, int from, int to)
static DbIterator<Order.Ask>
getAskOrdersByAccountAsset(long accountId, long assetId, int from, int to)
static DbIterator<Order.Ask>
getAskOrdersByAsset(long assetId, int from, int to)
static int
getCount()
static DbIterator<Order.Ask>
getSortedOrders(long assetId, int from, int to)
-
Methods inherited from class nxt.Order
getAccountId, getAssetId, getHeight, getId, getPriceNQT, getQuantityQNT, getTransactionHeight, getTransactionIndex, toString
-
-
-
-
Method Detail
-
getCount
public static int getCount()
-
getAskOrder
public static Order.Ask getAskOrder(long orderId)
-
getAll
public static DbIterator<Order.Ask> getAll()
-
getAll
public static DbIterator<Order.Ask> getAll(int from, int to)
-
getAskOrdersByAccount
public static DbIterator<Order.Ask> getAskOrdersByAccount(long accountId, int from, int to)
-
getAskOrdersByAsset
public static DbIterator<Order.Ask> getAskOrdersByAsset(long assetId, int from, int to)
-
getAskOrdersByAccountAsset
public static DbIterator<Order.Ask> getAskOrdersByAccountAsset(long accountId, long assetId, int from, int to)
-
getSortedOrders
public static DbIterator<Order.Ask> getSortedOrders(long assetId, int from, int to)
-
-