Uses of Class
net.minecraft.src.NBTBase

Packages that use NBTBase
net.minecraft.src   
 

Uses of NBTBase in net.minecraft.src
 

Subclasses of NBTBase in net.minecraft.src
 class NBTTagByte
           
 class NBTTagByteArray
           
 class NBTTagCompound
           
 class NBTTagDouble
           
 class NBTTagEnd
           
 class NBTTagFloat
           
 class NBTTagInt
           
 class NBTTagIntArray
           
 class NBTTagList
           
 class NBTTagLong
           
 class NBTTagShort
           
 class NBTTagString
           
 

Methods in net.minecraft.src that return NBTBase
 NBTBase NBTTagIntArray.copy()
          Creates a clone of the tag.
 NBTBase NBTTagByte.copy()
          Creates a clone of the tag.
 NBTBase NBTTagFloat.copy()
          Creates a clone of the tag.
 NBTBase NBTTagCompound.copy()
          Creates a clone of the tag.
 NBTBase NBTTagInt.copy()
          Creates a clone of the tag.
abstract  NBTBase NBTBase.copy()
          Creates a clone of the tag.
 NBTBase NBTTagLong.copy()
          Creates a clone of the tag.
 NBTBase NBTTagEnd.copy()
          Creates a clone of the tag.
 NBTBase NBTTagShort.copy()
          Creates a clone of the tag.
 NBTBase NBTTagDouble.copy()
          Creates a clone of the tag.
 NBTBase NBTTagList.copy()
          Creates a clone of the tag.
 NBTBase NBTTagByteArray.copy()
          Creates a clone of the tag.
 NBTBase NBTTagString.copy()
          Creates a clone of the tag.
 NBTBase NBTTagCompound.getTag(String par1Str)
          gets a generic tag with the specified name
static NBTBase NBTBase.newTag(byte par0, String par1Str)
          Creates and returns a new tag of the specified type, or null if invalid.
static NBTBase NBTBase.readNamedTag(DataInput par0DataInput)
          Reads and returns a tag from the given DataInput, or the End tag if no tag could be read.
 NBTBase NBTTagList.removeTag(int par1)
           
 NBTBase NBTBase.setName(String par1Str)
          Sets the name for this tag and returns this for convenience.
 NBTBase NBTTagList.tagAt(int par1)
          Retrieves the tag at the specified index from the list.
 

Methods in net.minecraft.src with parameters of type NBTBase
 void NBTTagList.appendTag(NBTBase par1NBTBase)
          Adds the provided tag to the end of the list.
 void ItemStack.func_77983_a(String par1Str, NBTBase par2NBTBase)
           
 void NBTTagCompound.setTag(String par1Str, NBTBase par2NBTBase)
          Stores the given tag into the map with the given string key.
static void NBTBase.writeNamedTag(NBTBase par0NBTBase, DataOutput par1DataOutput)
          Writes the specified tag to the given DataOutput, writing the type byte, the UTF string key and then calling the tag to write its data.