package net.minecraft.nbt; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; public class NBTTagShort extends NBTBase.NBTPrimitive { /** The short value for the tag. */ private short data; private static final String __OBFID = "CL_00001227"; public NBTTagShort() {} public NBTTagShort(short p_i45135_1_) { this.data = p_i45135_1_; } /** * Write the actual data contents of the tag, implemented in NBT extension classes */ void write(DataOutput output) throws IOException { output.writeShort(this.data); } void read(DataInput input, int depth, NBTSizeTracker sizeTracker) throws IOException { sizeTracker.addSpaceRead(16L); this.data = input.readShort(); } /** * Gets the type byte for the tag. */ public byte getId() { return (byte)2; } public String toString() { return "" + this.data + "s"; } /** * Creates a clone of the tag. */ public NBTBase copy() { return new NBTTagShort(this.data); } public boolean equals(Object p_equals_1_) { if (super.equals(p_equals_1_)) { NBTTagShort nbttagshort = (NBTTagShort)p_equals_1_; return this.data == nbttagshort.data; } else { return false; } } public int hashCode() { return super.hashCode() ^ this.data; } public long getLong() { return (long)this.data; } public int getInt() { return this.data; } public short getShort() { return this.data; } public byte getByte() { return (byte)(this.data & 255); } public double getDouble() { return (double)this.data; } public float getFloat() { return (float)this.data; } }