Package net.kyori.adventure.nbt
Interface ListTagSetter<R,T extends BinaryTag>
-
- Type Parameters:
R
- the return typeT
- the element type
- All Known Subinterfaces:
ListBinaryTag
,ListBinaryTag.Builder<T>
public interface ListTagSetter<R,T extends BinaryTag>
Common methods betweenListBinaryTag
andListBinaryTag.Builder
.- Since:
- 4.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
add(Iterable<? extends T> tags)
Adds multiple tags.R
add(T tag)
Adds a tag.
-