Uses of Class
org.spectrumauctions.sats.core.model.World
-
-
Uses of World in org.spectrumauctions.sats.core.model
Classes in org.spectrumauctions.sats.core.model with type parameters of type World Modifier and Type Class Description classDefaultModel<W extends World,B extends SATSBidder>Methods in org.spectrumauctions.sats.core.model that return World Modifier and Type Method Description abstract WorldGenericGood. getWorld()abstract WorldLicense. getWorld()abstract WorldSATSBidder. getWorld()WorldSATSGood. getWorld()Methods in org.spectrumauctions.sats.core.model with parameters of type World Modifier and Type Method Description abstract voidSATSBidder. refreshReference(World world)To prevent from creating too many identical world instances, worlds are not serialized and deserialized with the bidder
As a temporary solution, the world instance is re-added after deserialization by calling this method.
This method will be removed in a later version and be done automatically during deserialization. -
Uses of World in org.spectrumauctions.sats.core.model.bvm
Subclasses of World in org.spectrumauctions.sats.core.model.bvm Modifier and Type Class Description classBMWorldMethods in org.spectrumauctions.sats.core.model.bvm with parameters of type World Modifier and Type Method Description voidBMBidder. refreshReference(World world) -
Uses of World in org.spectrumauctions.sats.core.model.cats
Subclasses of World in org.spectrumauctions.sats.core.model.cats Modifier and Type Class Description classCATSWorldMethods in org.spectrumauctions.sats.core.model.cats with parameters of type World Modifier and Type Method Description voidCATSBidder. refreshReference(World world) -
Uses of World in org.spectrumauctions.sats.core.model.gsvm
Subclasses of World in org.spectrumauctions.sats.core.model.gsvm Modifier and Type Class Description classGSVMWorldMethods in org.spectrumauctions.sats.core.model.gsvm with parameters of type World Modifier and Type Method Description voidGSVMBidder. refreshReference(World world) -
Uses of World in org.spectrumauctions.sats.core.model.lsvm
Subclasses of World in org.spectrumauctions.sats.core.model.lsvm Modifier and Type Class Description classLSVMWorldMethods in org.spectrumauctions.sats.core.model.lsvm with parameters of type World Modifier and Type Method Description voidLSVMBidder. refreshReference(World world) -
Uses of World in org.spectrumauctions.sats.core.model.mrvm
Subclasses of World in org.spectrumauctions.sats.core.model.mrvm Modifier and Type Class Description classMRVMWorldMethods in org.spectrumauctions.sats.core.model.mrvm with parameters of type World Modifier and Type Method Description voidMRVMBidder. refreshReference(World world)voidMRVMRegionalBidder. refreshReference(World world) -
Uses of World in org.spectrumauctions.sats.core.model.srvm
Subclasses of World in org.spectrumauctions.sats.core.model.srvm Modifier and Type Class Description classSRVMWorldMethods in org.spectrumauctions.sats.core.model.srvm with parameters of type World Modifier and Type Method Description voidSRVMBidder. refreshReference(World world) -
Uses of World in org.spectrumauctions.sats.core.util.file.gson
Methods in org.spectrumauctions.sats.core.util.file.gson with parameters of type World Modifier and Type Method Description voidAllocationLimitAdapter. setWorld(World world)voidGsonWrapper. setWorld(World world) -
Uses of World in org.spectrumauctions.sats.core.util.instancehandling
Methods in org.spectrumauctions.sats.core.util.instancehandling with type parameters of type World Modifier and Type Method Description <T extends World>
TInMemoryInstanceHandler. readWorld(java.lang.Class<T> type, long world)abstract <T extends World>
TInstanceHandler. readWorld(java.lang.Class<T> type, long world)Reads a world instance.<T extends World>
TJSONInstanceHandler. readWorld(java.lang.Class<T> type, long worldId)Methods in org.spectrumauctions.sats.core.util.instancehandling with parameters of type World Modifier and Type Method Description <T extends SATSBidder>
TInMemoryInstanceHandler. readBidder(java.lang.Class<T> type, World world, long populationId, long bidderId)abstract <T extends SATSBidder>
TInstanceHandler. readBidder(java.lang.Class<T> type, World world, long populationId, long bidderId)Used to deserialize a bidder, if its implementing class is known<T extends SATSBidder>
TJSONInstanceHandler. readBidder(java.lang.Class<T> type, World world, long populationId, long bidderId)<T extends SATSBidder>
TInMemoryInstanceHandler. readBidderWithUnknownType(java.lang.Class<T> bidderSuperType, World world, long populationId, long bidderId)abstract <T extends SATSBidder>
TInstanceHandler. readBidderWithUnknownType(java.lang.Class<T> bidderSuperType, World world, long populationId, long bidderId)Used to deserialize a bidder, if its type is not exactly known, i.e., if there are different bidder implementations for this model.<T extends SATSBidder>
TJSONInstanceHandler. readBidderWithUnknownType(java.lang.Class<T> bidderSuperType, World world, long populationId, long bidderId)<T extends SATSBidder>
java.util.Collection<T>InMemoryInstanceHandler. readPopulation(java.lang.Class<T> type, World world, long populationId)abstract <T extends SATSBidder>
java.util.Collection<T>InstanceHandler. readPopulation(java.lang.Class<T> type, World world, long populationId)Used to deserialize a set of bidders, if the implementing class of all bidders is known and the same<T extends SATSBidder>
java.util.Collection<T>JSONInstanceHandler. readPopulation(java.lang.Class<T> type, World world, long populationId)<T extends SATSBidder>
java.util.List<T>InMemoryInstanceHandler. readPopulationWithUnknownTypes(java.lang.Class<T> bidderSuperType, World world, long populationId)abstract <T extends SATSBidder>
java.util.List<T>InstanceHandler. readPopulationWithUnknownTypes(java.lang.Class<T> bidderSuperType, World world, long populationId)Used to deserialize a set of bidders, if their type is not exactly known, i.e., if there are different bidder implementations for this model.<T extends SATSBidder>
java.util.List<T>JSONInstanceHandler. readPopulationWithUnknownTypes(java.lang.Class<T> bidderSuperType, World world, long populationId)voidInMemoryInstanceHandler. writeWorld(World world)abstract voidInstanceHandler. writeWorld(World world)Writes a world instance.voidJSONInstanceHandler. writeWorld(World world)
-