Uses of Class
net.minecraft.nbt.NBTTagCompound

Packages that use NBTTagCompound
cpw.mods.fml.common   
cpw.mods.fml.common.event   
cpw.mods.fml.common.registry   
net.minecraft.block   
net.minecraft.client.multiplayer   
net.minecraft.client.particle   
net.minecraft.entity   
net.minecraft.entity.boss   
net.minecraft.entity.item   
net.minecraft.entity.monster   
net.minecraft.entity.passive   
net.minecraft.entity.player   
net.minecraft.entity.projectile   
net.minecraft.item   
net.minecraft.nbt   
net.minecraft.network.packet   
net.minecraft.potion   
net.minecraft.server.integrated   
net.minecraft.server.management   
net.minecraft.tileentity   
net.minecraft.util   
net.minecraft.village   
net.minecraft.world   
net.minecraft.world.chunk.storage   
net.minecraft.world.storage   
net.minecraftforge.common   
net.minecraftforge.event.world   
net.minecraftforge.liquids   
 

Uses of NBTTagCompound in cpw.mods.fml.common
 

Methods in cpw.mods.fml.common that return NBTTagCompound
 NBTTagCompound FMLDummyContainer.getDataForWriting(SaveHandler handler, WorldInfo info)
           
 NBTTagCompound WorldAccessContainer.getDataForWriting(SaveHandler handler, WorldInfo info)
           
 

Methods in cpw.mods.fml.common with parameters of type NBTTagCompound
 void FMLCommonHandler.handleWorldDataLoad(SaveHandler handler, WorldInfo worldInfo, NBTTagCompound tagCompound)
           
 void FMLCommonHandler.handleWorldDataSave(SaveHandler handler, WorldInfo worldInfo, NBTTagCompound tagCompound)
           
 void FMLDummyContainer.readData(SaveHandler handler, WorldInfo info, Map<String,NBTBase> propertyMap, NBTTagCompound tag)
           
 void WorldAccessContainer.readData(SaveHandler handler, WorldInfo info, Map<String,NBTBase> propertyMap, NBTTagCompound tag)
           
 

Uses of NBTTagCompound in cpw.mods.fml.common.event
 

Methods in cpw.mods.fml.common.event that return NBTTagCompound
 NBTTagCompound FMLInterModComms.IMCMessage.getNBTValue()
           
 

Methods in cpw.mods.fml.common.event with parameters of type NBTTagCompound
static boolean FMLInterModComms.sendMessage(String modId, String key, NBTTagCompound value)
           
static void FMLInterModComms.sendRuntimeMessage(Object sourceMod, String modId, String key, NBTTagCompound value)
           
 

Uses of NBTTagCompound in cpw.mods.fml.common.registry
 

Methods in cpw.mods.fml.common.registry that return NBTTagCompound
 NBTTagCompound ItemData.toNBT()
           
 

Constructors in cpw.mods.fml.common.registry with parameters of type NBTTagCompound
ItemData(NBTTagCompound tag)
           
 

Uses of NBTTagCompound in net.minecraft.block
 

Methods in net.minecraft.block with parameters of type NBTTagCompound
 void TileEntityRecordPlayer.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityRecordPlayer.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 

Uses of NBTTagCompound in net.minecraft.client.multiplayer
 

Methods in net.minecraft.client.multiplayer that return NBTTagCompound
 NBTTagCompound ServerData.getNBTCompound()
          Returns an NBTTagCompound with the server's name, IP and maybe acceptTextures.
 

Methods in net.minecraft.client.multiplayer with parameters of type NBTTagCompound
 void WorldClient.func_92088_a(double par1, double par3, double par5, double par7, double par9, double par11, NBTTagCompound par13NBTTagCompound)
           
static ServerData ServerData.getServerDataFromNBTCompound(NBTTagCompound par0NBTTagCompound)
          Takes an NBTTagCompound with 'name' and 'ip' keys, returns a ServerData instance.
 

Uses of NBTTagCompound in net.minecraft.client.particle
 

Methods in net.minecraft.client.particle with parameters of type NBTTagCompound
 void EntityFX.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityFX.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Constructors in net.minecraft.client.particle with parameters of type NBTTagCompound
EntityFireworkStarterFX(World par1World, double par2, double par4, double par6, double par8, double par10, double par12, EffectRenderer par14EffectRenderer, NBTTagCompound par15NBTTagCompound)
           
 

Uses of NBTTagCompound in net.minecraft.entity
 

Methods in net.minecraft.entity that return NBTTagCompound
 NBTTagCompound Entity.getEntityData()
          Returns a NBTTagCompound that can be used to store custom data for this entity.
 

Methods in net.minecraft.entity with parameters of type NBTTagCompound
 boolean Entity.addEntityID(NBTTagCompound par1NBTTagCompound)
          adds the ID of this entity to the NBT given
static Entity EntityList.createEntityFromNBT(NBTTagCompound par0NBTTagCompound, World par1World)
          create a new instance of an entity from NBT store
 void EntityHanging.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityAgeable.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityLiving.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void Entity.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads the entity from NBT (calls an abstract helper method to read specialized data)
 void EntityHanging.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityAgeable.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityLiving.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void Entity.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Save the entity to NBT (calls an abstract helper method to write extra data)
 

Uses of NBTTagCompound in net.minecraft.entity.boss
 

Methods in net.minecraft.entity.boss with parameters of type NBTTagCompound
 void EntityWither.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityWither.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Uses of NBTTagCompound in net.minecraft.entity.item
 

Methods in net.minecraft.entity.item with parameters of type NBTTagCompound
 void EntityEnderEye.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityXPOrb.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityPainting.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityFireworkRocket.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityItem.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityItemFrame.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityEnderEye.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityXPOrb.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityPainting.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityFireworkRocket.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityItem.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityItemFrame.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Uses of NBTTagCompound in net.minecraft.entity.monster
 

Methods in net.minecraft.entity.monster with parameters of type NBTTagCompound
 void EntitySkeleton.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityGhast.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityIronGolem.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityCreeper.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntitySlime.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityZombie.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityEnderman.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityPigZombie.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntitySkeleton.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityGhast.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityIronGolem.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityCreeper.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntitySlime.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityZombie.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityEnderman.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityPigZombie.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Uses of NBTTagCompound in net.minecraft.entity.passive
 

Methods in net.minecraft.entity.passive with parameters of type NBTTagCompound
 void EntityBat.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityWolf.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityAnimal.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntitySheep.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityTameable.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityVillager.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityPig.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityOcelot.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityBat.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityWolf.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityAnimal.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntitySheep.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityTameable.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityVillager.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityPig.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityOcelot.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Uses of NBTTagCompound in net.minecraft.entity.player
 

Methods in net.minecraft.entity.player with parameters of type NBTTagCompound
 void PlayerCapabilities.readCapabilitiesFromNBT(NBTTagCompound par1NBTTagCompound)
           
 void EntityPlayer.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityPlayerMP.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void PlayerCapabilities.writeCapabilitiesToNBT(NBTTagCompound par1NBTTagCompound)
           
 void EntityPlayer.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityPlayerMP.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Uses of NBTTagCompound in net.minecraft.entity.projectile
 

Methods in net.minecraft.entity.projectile with parameters of type NBTTagCompound
 void EntityArrow.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityThrowable.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityPotion.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityFishHook.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityLargeFireball.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityFireball.readEntityFromNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to read subclass entity data from NBT.
 void EntityArrow.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityThrowable.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityPotion.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityFishHook.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityLargeFireball.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 void EntityFireball.writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
          (abstract) Protected helper method to write subclass entity data to NBT.
 

Uses of NBTTagCompound in net.minecraft.item
 

Fields in net.minecraft.item declared as NBTTagCompound
 NBTTagCompound ItemStack.stackTagCompound
          A NBTTagMap containing data about an ItemStack.
 

Methods in net.minecraft.item that return NBTTagCompound
 NBTTagCompound ItemStack.getTagCompound()
          Returns the NBTTagCompound of the ItemStack.
 NBTTagCompound ItemStack.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Write the stack fields to a NBT object.
 

Methods in net.minecraft.item with parameters of type NBTTagCompound
static void ItemFireworkCharge.func_92107_a(NBTTagCompound par0NBTTagCompound, List par1List)
           
static ItemStack ItemStack.loadItemStackFromNBT(NBTTagCompound par0NBTTagCompound)
           
 void ItemStack.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Read the stack fields from a NBT object.
 void ItemStack.setTagCompound(NBTTagCompound par1NBTTagCompound)
          Assigns a NBTTagCompound to the ItemStack, minecraft validates that only non-stackable items can have it.
static boolean ItemEditableBook.validBookTagContents(NBTTagCompound par0NBTTagCompound)
           
static boolean ItemWritableBook.validBookTagPages(NBTTagCompound par0NBTTagCompound)
           
 NBTTagCompound ItemStack.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Write the stack fields to a NBT object.
 

Uses of NBTTagCompound in net.minecraft.nbt
 

Methods in net.minecraft.nbt that return NBTTagCompound
static NBTTagCompound CompressedStreamTools.decompress(byte[] par0ArrayOfByte)
           
 NBTTagCompound NBTTagCompound.getCompoundTag(String par1Str)
          Retrieves a NBTTagCompound subtag matching the specified key, or a new empty NBTTagCompound if no such key was stored.
static NBTTagCompound CompressedStreamTools.read(DataInput par0DataInput)
          Reads from a CompressedStream.
static NBTTagCompound CompressedStreamTools.read(File par0File)
           
static NBTTagCompound CompressedStreamTools.readCompressed(InputStream par0InputStream)
          Load the gzipped compound from the inputstream.
 

Methods in net.minecraft.nbt with parameters of type NBTTagCompound
static byte[] CompressedStreamTools.compress(NBTTagCompound par0NBTTagCompound)
           
static void CompressedStreamTools.safeWrite(NBTTagCompound par0NBTTagCompound, File par1File)
           
 void NBTTagCompound.setCompoundTag(String par1Str, NBTTagCompound par2NBTTagCompound)
          Stores the given NBTTagCompound into the map with the given string key.
static void CompressedStreamTools.write(NBTTagCompound par0NBTTagCompound, DataOutput par1DataOutput)
           
static void CompressedStreamTools.write(NBTTagCompound par0NBTTagCompound, File par1File)
           
static void CompressedStreamTools.writeCompressed(NBTTagCompound par0NBTTagCompound, OutputStream par1OutputStream)
          Write the compound, gzipped, to the outputstream.
 

Uses of NBTTagCompound in net.minecraft.network.packet
 

Fields in net.minecraft.network.packet declared as NBTTagCompound
 NBTTagCompound Packet132TileEntityData.customParam1
          Custom parameter 1 passed to the tile entity on update.
 

Methods in net.minecraft.network.packet that return NBTTagCompound
static NBTTagCompound Packet.readNBTTagCompound(DataInputStream par0DataInputStream)
          Reads a compressed NBTTagCompound from the InputStream
 

Constructors in net.minecraft.network.packet with parameters of type NBTTagCompound
Packet132TileEntityData(int par1, int par2, int par3, int par4, NBTTagCompound par5NBTTagCompound)
           
 

Uses of NBTTagCompound in net.minecraft.potion
 

Methods in net.minecraft.potion that return NBTTagCompound
 NBTTagCompound PotionEffect.writeCustomPotionEffectToNBT(NBTTagCompound par1NBTTagCompound)
          Write a custom potion effect to a potion item's NBT data.
 

Methods in net.minecraft.potion with parameters of type NBTTagCompound
static PotionEffect PotionEffect.readCustomPotionEffectFromNBT(NBTTagCompound par0NBTTagCompound)
          Read a custom potion effect from a potion item's NBT data.
 NBTTagCompound PotionEffect.writeCustomPotionEffectToNBT(NBTTagCompound par1NBTTagCompound)
          Write a custom potion effect to a potion item's NBT data.
 

Uses of NBTTagCompound in net.minecraft.server.integrated
 

Methods in net.minecraft.server.integrated that return NBTTagCompound
 NBTTagCompound IntegratedPlayerList.getTagsFromLastWrite()
          gets the tags created in the last writePlayerData call
 

Uses of NBTTagCompound in net.minecraft.server.management
 

Methods in net.minecraft.server.management that return NBTTagCompound
 NBTTagCompound ServerConfigurationManager.getTagsFromLastWrite()
          gets the tags created in the last writePlayerData call
 

Uses of NBTTagCompound in net.minecraft.tileentity
 

Methods in net.minecraft.tileentity with parameters of type NBTTagCompound
static TileEntity TileEntity.createAndLoadEntity(NBTTagCompound par0NBTTagCompound)
          Creates a new entity and loads its data from the specified NBT.
 void TileEntityNote.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityPiston.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityBrewingStand.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityMobSpawner.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntity.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityDispenser.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntitySign.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntitySkull.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityChest.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityBeacon.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityFurnace.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityCommandBlock.readFromNBT(NBTTagCompound par1NBTTagCompound)
          Reads a tile entity from NBT.
 void TileEntityNote.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityPiston.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityBrewingStand.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityMobSpawner.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntity.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityDispenser.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntitySign.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntitySkull.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityChest.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityBeacon.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityFurnace.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 void TileEntityCommandBlock.writeToNBT(NBTTagCompound par1NBTTagCompound)
          Writes a tile entity to NBT.
 

Uses of NBTTagCompound in net.minecraft.util
 

Methods in net.minecraft.util with parameters of type NBTTagCompound
 void FoodStats.readNBT(NBTTagCompound par1NBTTagCompound)
          Reads food stats from an NBT object.
 void FoodStats.writeNBT(NBTTagCompound par1NBTTagCompound)
          Writes food stats to an NBT object.
 

Uses of NBTTagCompound in net.minecraft.village
 

Methods in net.minecraft.village that return NBTTagCompound
 NBTTagCompound MerchantRecipeList.getRecipiesAsTags()
           
 NBTTagCompound MerchantRecipe.writeToTags()
           
 

Methods in net.minecraft.village with parameters of type NBTTagCompound
 void VillageCollection.readFromNBT(NBTTagCompound par1NBTTagCompound)
          reads in data from the NBTTagCompound into this MapDataBase
 void MerchantRecipe.readFromTags(NBTTagCompound par1NBTTagCompound)
           
 void MerchantRecipeList.readRecipiesFromTags(NBTTagCompound par1NBTTagCompound)
           
 void Village.readVillageDataFromNBT(NBTTagCompound par1NBTTagCompound)
          Read this village's data from NBT.
 void VillageCollection.writeToNBT(NBTTagCompound par1NBTTagCompound)
          write data to NBTTagCompound from this MapDataBase, similar to Entities and TileEntities
 void Village.writeVillageDataToNBT(NBTTagCompound par1NBTTagCompound)
          Write this village's data to NBT.
 

Constructors in net.minecraft.village with parameters of type NBTTagCompound
MerchantRecipe(NBTTagCompound par1NBTTagCompound)
           
MerchantRecipeList(NBTTagCompound par1NBTTagCompound)
           
 

Uses of NBTTagCompound in net.minecraft.world
 

Methods in net.minecraft.world that return NBTTagCompound
 NBTTagCompound GameRules.writeGameRulesToNBT()
          Return the defined game rules as NBT.
 

Methods in net.minecraft.world with parameters of type NBTTagCompound
 void World.func_92088_a(double par1, double par3, double par5, double par7, double par9, double par11, NBTTagCompound par13NBTTagCompound)
           
abstract  void WorldSavedData.readFromNBT(NBTTagCompound var1)
          reads in data from the NBTTagCompound into this MapDataBase
 void GameRules.readGameRulesFromNBT(NBTTagCompound par1NBTTagCompound)
          Set defined game rules from NBT.
abstract  void WorldSavedData.writeToNBT(NBTTagCompound var1)
          write data to NBTTagCompound from this MapDataBase, similar to Entities and TileEntities
 

Uses of NBTTagCompound in net.minecraft.world.chunk.storage
 

Methods in net.minecraft.world.chunk.storage with parameters of type NBTTagCompound
static void ChunkLoader.convertToAnvilFormat(AnvilConverterData par0AnvilConverterData, NBTTagCompound par1NBTTagCompound, WorldChunkManager par2WorldChunkManager)
           
static AnvilConverterData ChunkLoader.load(NBTTagCompound par0NBTTagCompound)
           
 void AnvilSaveHandler.saveWorldInfoWithPlayer(WorldInfo par1WorldInfo, NBTTagCompound par2NBTTagCompound)
          Saves the given World Info with the given NBTTagCompound as the Player.
 

Uses of NBTTagCompound in net.minecraft.world.storage
 

Methods in net.minecraft.world.storage that return NBTTagCompound
 NBTTagCompound DerivedWorldInfo.cloneNBTCompound(NBTTagCompound par1NBTTagCompound)
          Creates a new NBTTagCompound for the world, with the given NBTTag as the "Player"
 NBTTagCompound WorldInfo.cloneNBTCompound(NBTTagCompound par1NBTTagCompound)
          Creates a new NBTTagCompound for the world, with the given NBTTag as the "Player"
 NBTTagCompound DerivedWorldInfo.getNBTTagCompound()
          Gets the NBTTagCompound for the worldInfo
 NBTTagCompound WorldInfo.getNBTTagCompound()
          Gets the NBTTagCompound for the worldInfo
 NBTTagCompound SaveHandler.getPlayerData(String par1Str)
          Gets the player data for the given playername as a NBTTagCompound.
 NBTTagCompound DerivedWorldInfo.getPlayerNBTTagCompound()
          Returns the player's NBTTagCompound to be loaded
 NBTTagCompound WorldInfo.getPlayerNBTTagCompound()
          Returns the player's NBTTagCompound to be loaded
 

Methods in net.minecraft.world.storage with parameters of type NBTTagCompound
 NBTTagCompound DerivedWorldInfo.cloneNBTCompound(NBTTagCompound par1NBTTagCompound)
          Creates a new NBTTagCompound for the world, with the given NBTTag as the "Player"
 NBTTagCompound WorldInfo.cloneNBTCompound(NBTTagCompound par1NBTTagCompound)
          Creates a new NBTTagCompound for the world, with the given NBTTag as the "Player"
 void MapData.readFromNBT(NBTTagCompound par1NBTTagCompound)
          reads in data from the NBTTagCompound into this MapDataBase
 void ISaveHandler.saveWorldInfoWithPlayer(WorldInfo var1, NBTTagCompound var2)
          Saves the given World Info with the given NBTTagCompound as the Player.
 void SaveHandlerMP.saveWorldInfoWithPlayer(WorldInfo par1WorldInfo, NBTTagCompound par2NBTTagCompound)
          Saves the given World Info with the given NBTTagCompound as the Player.
 void SaveHandler.saveWorldInfoWithPlayer(WorldInfo par1WorldInfo, NBTTagCompound par2NBTTagCompound)
          Saves the given World Info with the given NBTTagCompound as the Player.
 void MapData.writeToNBT(NBTTagCompound par1NBTTagCompound)
          write data to NBTTagCompound from this MapDataBase, similar to Entities and TileEntities
 

Constructors in net.minecraft.world.storage with parameters of type NBTTagCompound
WorldInfo(NBTTagCompound par1NBTTagCompound)
           
 

Uses of NBTTagCompound in net.minecraftforge.common
 

Methods in net.minecraftforge.common that return NBTTagCompound
 NBTTagCompound ForgeDummyContainer.getDataForWriting(SaveHandler handler, WorldInfo info)
           
 NBTTagCompound ForgeChunkManager.Ticket.getModData()
          Retrieve the NBTTagCompound that stores mod specific data for the chunk ticket.
static NBTTagCompound DimensionManager.saveDimensionDataMap()
           
 

Methods in net.minecraftforge.common with parameters of type NBTTagCompound
static void DimensionManager.loadDimensionDataMap(NBTTagCompound compoundTag)
           
 void ForgeDummyContainer.readData(SaveHandler handler, WorldInfo info, Map<String,NBTBase> propertyMap, NBTTagCompound tag)
           
 void WorldSpecificSaveHandler.saveWorldInfoWithPlayer(WorldInfo var1, NBTTagCompound var2)
           
 

Uses of NBTTagCompound in net.minecraftforge.event.world
 

Methods in net.minecraftforge.event.world that return NBTTagCompound
 NBTTagCompound ChunkDataEvent.getData()
           
 

Constructors in net.minecraftforge.event.world with parameters of type NBTTagCompound
ChunkDataEvent.Load(Chunk chunk, NBTTagCompound data)
           
ChunkDataEvent.Save(Chunk chunk, NBTTagCompound data)
           
ChunkDataEvent(Chunk chunk, NBTTagCompound data)
           
 

Uses of NBTTagCompound in net.minecraftforge.liquids
 

Methods in net.minecraftforge.liquids that return NBTTagCompound
 NBTTagCompound IBlockLiquid.getLiquidProperties()
          Custom properties of the liquid.
 NBTTagCompound LiquidStack.writeToNBT(NBTTagCompound nbttagcompound)
           
 

Methods in net.minecraftforge.liquids with parameters of type NBTTagCompound
static LiquidStack LiquidStack.loadLiquidStackFromNBT(NBTTagCompound nbttagcompound)
          Reads a liquid stack from the passed nbttagcompound and returns it.
 void LiquidStack.readFromNBT(NBTTagCompound nbttagcompound)
           
 NBTTagCompound LiquidStack.writeToNBT(NBTTagCompound nbttagcompound)