Uses of Class
com.olziedev.playerauctions.api.auction.product.ASerializableProduct
Packages that use ASerializableProduct
Package
Description
All auction based objects that handles and manages data.
All product based objects that handles and manages data for auctions.
All recent based objects that handles and manages data for auctions.
All auction events that are triggered for auctions.
All expansion based objects that expose methods for external plugins to hook into.
All player based objects that handles and manages data.
-
Uses of ASerializableProduct in com.olziedev.playerauctions.api.auction
Methods in com.olziedev.playerauctions.api.auction that return ASerializableProductModifier and TypeMethodDescriptionabstract ASerializableProduct
<?> Auction.getSerializableProduct()
Methods in com.olziedev.playerauctions.api.auction with parameters of type ASerializableProductModifier and TypeMethodDescriptionabstract void
Auction.setProduct
(ASerializableProduct<?> serializableProduct, long amount) Modifies the item stack of the auction. -
Uses of ASerializableProduct in com.olziedev.playerauctions.api.auction.product
Methods in com.olziedev.playerauctions.api.auction.product that return ASerializableProductModifier and TypeMethodDescriptionAProduct.getSerializableProduct()
ASerializableProduct.getSerializableProduct
(long amount) Constructors in com.olziedev.playerauctions.api.auction.product with parameters of type ASerializableProduct -
Uses of ASerializableProduct in com.olziedev.playerauctions.api.auction.recent
Methods in com.olziedev.playerauctions.api.auction.recent with parameters of type ASerializableProductModifier and TypeMethodDescriptionabstract void
ARecent.setProduct
(ASerializableProduct<?> serializableProduct, long amount) Modifies the item stack of the auction. -
Uses of ASerializableProduct in com.olziedev.playerauctions.api.events.auction
Methods in com.olziedev.playerauctions.api.events.auction that return ASerializableProductConstructors in com.olziedev.playerauctions.api.events.auction with parameters of type ASerializableProductModifierConstructorDescriptionPlayerAuctionBuyEvent
(Auction playerAuction, Player buyer, double price, ASerializableProduct<?> serializableProduct) This event is triggered before a player purchases an auction. -
Uses of ASerializableProduct in com.olziedev.playerauctions.api.expansion
Methods in com.olziedev.playerauctions.api.expansion that return ASerializableProductModifier and TypeMethodDescriptionAConverter.convertProduct
(byte[] oldBytes) This method converts old product data to new product data.static ASerializableProduct
<?> AProductProvider.deserializeProduct
(byte[] bytes) abstract ASerializableProduct
<T> AProductProvider.getSerializableProduct
(byte[] bytes) Methods in com.olziedev.playerauctions.api.expansion with parameters of type ASerializableProductModifier and TypeMethodDescriptionabstract boolean
AProductProvider.isSimilarProduct
(ASerializableProduct<?> product, ASerializableProduct<?> other) -
Uses of ASerializableProduct in com.olziedev.playerauctions.api.player
Methods in com.olziedev.playerauctions.api.player with parameters of type ASerializableProductModifier and TypeMethodDescriptionabstract void
APlayer.addRecentAuction
(Auction auction, UUID target, double price, ACurrency currency, String internalCurrency, ASerializableProduct<?> product, RecentAuctionType type, Runnable runnable) Add a recent auction (sold/bought/auctioned) to the player.