org.jnbt
Class ListTag

java.lang.Object
  extended by org.jnbt.Tag
      extended by org.jnbt.ListTag

public final class ListTag
extends Tag

The TAG_List tag.

Author:
Graham Edgecombe

Constructor Summary
ListTag(String name, Class<? extends Tag> type, List<Tag> value)
          Creates the tag.
 
Method Summary
 Class<? extends Tag> getType()
          Gets the type of item in this list.
 List<Tag> getValue()
          Gets the value of this tag.
 String toString()
           
 
Methods inherited from class org.jnbt.Tag
getName
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ListTag

public ListTag(String name,
               Class<? extends Tag> type,
               List<Tag> value)
Creates the tag.

Parameters:
name - The name.
type - The type of item in the list.
value - The value.
Method Detail

getType

public Class<? extends Tag> getType()
Gets the type of item in this list.

Returns:
The type of item in this list.

getValue

public List<Tag> getValue()
Description copied from class: Tag
Gets the value of this tag.

Specified by:
getValue in class Tag
Returns:
The value of this tag.

toString

public String toString()
Overrides:
toString in class Object