Class net.minecraft.util.dynamic.Codecs

This description should be content pulled from the first comments of a lua file.

Static Fields

userdata, Codec Codecs.NONNEGATIVE_INT This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
userdata, Codec Codecs.POSITIVE_FLOAT This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
userdata, Codec Codecs.POSITIVE_INT This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Static Methods

Codecs.createCodecForPairObject(codec, leftFieldName, rightFieldName, combineFunction, leftFunction, rightFunction) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.createContextRetrievalCodec(retriever) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.createEqualTypeChecker(typeGetter) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.createLazy(supplier) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.createNonEmptyEntryListChecker() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.createNonEmptyListChecker() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.method_39508(function, function2) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.nonEmptyEntryList(originalCodec) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.nonEmptyList(originalCodec) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.orCompressed(uncompressedCodec, compressedCodec) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.orElsePartial(object) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.rawIdChecked(elementToRawId, rawIdToElement, errorRawId) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.withLifecycle(originalCodec, function, function2) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
Codecs.xor(first, second) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Constructors

Codecs() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Instance Methods

instance:equals(arg0) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:getClass() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:hashCode() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:notify() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:notifyAll() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:toString() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:wait(arg0, arg1) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:wait() This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:wait(arg0) This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"


Static Methods

Codecs.createCodecForPairObject(codec, leftFieldName, rightFieldName, combineFunction, leftFunction, rightFunction)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • codec userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • leftFieldName string This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • rightFieldName string This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • combineFunction userdata, BiFunction This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • leftFunction userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • rightFunction userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.createContextRetrievalCodec(retriever)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • retriever userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, MapCodec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.createEqualTypeChecker(typeGetter)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • typeGetter userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.createLazy(supplier)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • supplier userdata, Supplier This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.createNonEmptyEntryListChecker()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Returns:

userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.createNonEmptyListChecker()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Returns:

userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.method_39508(function, function2)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • function userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • function2 userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.nonEmptyEntryList(originalCodec)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • originalCodec userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.nonEmptyList(originalCodec)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • originalCodec userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.orCompressed(uncompressedCodec, compressedCodec)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • uncompressedCodec userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • compressedCodec userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.orElsePartial(object)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • object userdata, Object This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, ResultFunction This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.rawIdChecked(elementToRawId, rawIdToElement, errorRawId)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • elementToRawId userdata, ToIntFunction This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • rawIdToElement userdata, IntFunction This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • errorRawId int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.withLifecycle(originalCodec, function, function2)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • originalCodec userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • function userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • function2 userdata, Function This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
Codecs.xor(first, second)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • first userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • second userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

userdata, Codec This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"

Constructors

Codecs()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Instance Methods

instance:equals(arg0)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • arg0 userdata, Object This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"

Returns:

boolean This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:getClass()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Returns:

userdata, Class This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:hashCode()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Returns:

int This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:notify()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:notifyAll()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:toString()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Returns:

string This description should be content pulled from the comments above a method in a lua file. Format: "-- @return DESCRIPTION"
instance:wait(arg0, arg1)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • arg0 int, long This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
  • arg1 int This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"
instance:wait()
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"
instance:wait(arg0)
This description should be content pulled from the comments above a method in a lua file. Format: "--- @method m_id DESCRIPTION"

Parameters:

  • arg0 int, long This description should be content pulled from the comments above a method in a lua file. Format: "-- @param varName DESCRIPTION"