Package net.kyori.adventure.nbt
Interface IntBinaryTag
-
- All Superinterfaces:
BinaryTag,BinaryTagLike,net.kyori.examination.Examinable,NumberBinaryTag
public interface IntBinaryTag extends NumberBinaryTag
A binary tag holding anintvalue.- Since:
- 4.0.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static @NotNull IntBinaryTagof(int value)Creates a binary tag holding anintvalue.default @NotNull BinaryTagType<IntBinaryTag>type()Gets the tag type.intvalue()Gets the value.-
Methods inherited from interface net.kyori.adventure.nbt.BinaryTag
asBinaryTag
-
Methods inherited from interface net.kyori.examination.Examinable
examinableName, examinableProperties, examine
-
Methods inherited from interface net.kyori.adventure.nbt.NumberBinaryTag
byteValue, doubleValue, floatValue, intValue, longValue, shortValue
-
-
-
-
Method Detail
-
of
@NotNull static @NotNull IntBinaryTag of(int value)
Creates a binary tag holding anintvalue.- Parameters:
value- the value- Returns:
- a binary tag
- Since:
- 4.0.0
-
type
@NotNull default @NotNull BinaryTagType<IntBinaryTag> type()
Description copied from interface:BinaryTagGets the tag type.- Specified by:
typein interfaceBinaryTag- Specified by:
typein interfaceNumberBinaryTag- Returns:
- the tag type
-
value
int value()
Gets the value.- Returns:
- the value
- Since:
- 4.0.0
-
-