Record Class CustomSpriteSourceTest.CustomSpriteSource
java.lang.Object
java.lang.Record
net.neoforged.neoforge.oldtest.client.CustomSpriteSourceTest.CustomSpriteSource
- All Implemented Interfaces:
SpriteSource
- Enclosing class:
CustomSpriteSourceTest
private static record CustomSpriteSourceTest.CustomSpriteSource(ResourceLocation id)
extends Record
implements SpriteSource
-
Nested Class Summary
Modifier and TypeClassDescription(package private) static final class
Nested classes/interfaces inherited from interface net.minecraft.client.renderer.texture.atlas.SpriteSource
SpriteSource.Output, SpriteSource.SpriteSupplier
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final com.mojang.serialization.MapCodec
<CustomSpriteSourceTest.CustomSpriteSource> private final ResourceLocation
The field for theid
record component.private static final org.slf4j.Logger
Fields inherited from interface net.minecraft.client.renderer.texture.atlas.SpriteSource
TEXTURE_ID_CONVERTER
-
Constructor Summary
ModifierConstructorDescriptionprivate
Creates an instance of aCustomSpriteSource
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.void
run
(ResourceManager manager, SpriteSource.Output output) final String
toString()
Returns a string representation of this record class.type()
-
Field Details
-
id
The field for theid
record component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
CODEC
private static final com.mojang.serialization.MapCodec<CustomSpriteSourceTest.CustomSpriteSource> CODEC
-
-
Constructor Details
-
CustomSpriteSource
Creates an instance of aCustomSpriteSource
record class.- Parameters:
id
- the value for theid
record component
-
-
Method Details
-
run
- Specified by:
run
in interfaceSpriteSource
-
type
- Specified by:
type
in interfaceSpriteSource
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-