Skip to content

Enum NbtTagType

Namespace: Void.Minecraft.Nbt
Assembly: Void.Minecraft.dll

Identifies the payload type encoded by an NBT tag.

public enum NbtTagType : byte

Extension Methods

StructExtensions.IsDefault<NbtTagType>(NbtTagType)

Fields

Byte = 1

A signed 8-bit integer.

ByteArray = 7

An array of signed 8-bit integers.

Compound = 10

A keyed tag collection.

Double = 6

A 64-bit floating-point number.

End = 0

Marks the end of a compound and has no payload.

Float = 5

A 32-bit floating-point number.

Int = 3

A signed 32-bit integer.

IntArray = 11

An array of signed 32-bit integers.

List = 9

A homogeneous ordered tag sequence.

Long = 4

A signed 64-bit integer.

LongArray = 12

An array of signed 64-bit integers.

Short = 2

A signed 16-bit integer.

String = 8

A modified UTF-8 string.