Uses of Class
org.jnbt.Tag

Uses of Tag in org.jnbt
 

Subclasses of Tag in org.jnbt
 class ByteArrayTag
          The TAG_Byte_Array tag.
 class ByteTag
          The TAG_Byte tag.
 class CompoundTag
          The TAG_Compound tag.
 class DoubleTag
          The TAG_Double tag.
 class EndTag
          The TAG_End tag.
 class FloatTag
          The TAG_Float tag.
 class IntTag
          The TAG_Int tag.
 class ListTag
          The TAG_List tag.
 class LongTag
          The TAG_Long tag.
 class ShortTag
          The TAG_Short tag.
 class StringTag
          The TAG_String tag.
 

Methods in org.jnbt that return Tag
 Tag NBTInputStream.readTag()
          Reads an NBT tag from the stream.
 

Methods in org.jnbt that return types with arguments of type Tag
 Class<? extends Tag> ListTag.getType()
          Gets the type of item in this list.
static Class<? extends Tag> NBTUtils.getTypeClass(int type)
          Gets the class of a type of tag.
 List<Tag> ListTag.getValue()
           
 Map<String,Tag> CompoundTag.getValue()
           
 

Methods in org.jnbt with parameters of type Tag
 void NBTOutputStream.writeTag(Tag tag)
          Writes a tag.
 

Method parameters in org.jnbt with type arguments of type Tag
static int NBTUtils.getTypeCode(Class<? extends Tag> clazz)
          Gets the type code of a tag class.
static String NBTUtils.getTypeName(Class<? extends Tag> clazz)
          Gets the type name of a tag.
 

Constructor parameters in org.jnbt with type arguments of type Tag
CompoundTag(String name, Map<String,Tag> value)
          Creates the tag.
ListTag(String name, Class<? extends Tag> type, List<Tag> value)
          Creates the tag.
ListTag(String name, Class<? extends Tag> type, List<Tag> value)
          Creates the tag.