Uses of Enum Class
io.github.toberocat.guiengine.render.RenderPriority
Packages that use RenderPriority
Package
Description
-
Uses of RenderPriority in io.github.toberocat.guiengine.components
Fields in io.github.toberocat.guiengine.components declared as RenderPriorityModifier and TypeFieldDescriptionprotected final @NotNull RenderPriority
AbstractGuiComponent.priority
The render priority of this component.protected @NotNull RenderPriority
AbstractGuiComponentBuilder.priority
Methods in io.github.toberocat.guiengine.components that return RenderPriorityModifier and TypeMethodDescription@NotNull RenderPriority
AbstractGuiComponent.renderPriority()
@NotNull RenderPriority
GuiComponent.renderPriority()
Get the rendering priority of the GUI component.Methods in io.github.toberocat.guiengine.components with parameters of type RenderPriorityModifier and TypeMethodDescriptionAbstractGuiComponentBuilder.setPriority
(@NotNull RenderPriority priority) Set the rendering priority of the GUI component.Constructors in io.github.toberocat.guiengine.components with parameters of type RenderPriorityModifierConstructorDescriptionprotected
AbstractGuiComponent
(int offsetX, int offsetY, int width, int height, @NotNull RenderPriority priority, @NotNull String id, @NotNull List<GuiFunction> clickFunctions, @NotNull List<GuiFunction> dragFunctions, @NotNull List<GuiFunction> closeFunctions, boolean hidden) Constructor for AbstractGuiComponent. -
Uses of RenderPriority in io.github.toberocat.guiengine.components.provided.embedded
Constructors in io.github.toberocat.guiengine.components.provided.embedded with parameters of type RenderPriorityModifierConstructorDescriptionEmbeddedGuiComponent
(int offsetX, int offsetY, int width, int height, @NotNull RenderPriority priority, @NotNull String id, @NotNull List<GuiFunction> clickFunctions, @NotNull List<GuiFunction> dragFunctions, @NotNull List<GuiFunction> closeFunctions, boolean hidden, @NotNull String targetGui, boolean copyAir, boolean interactions) Constructor for EmbeddedGuiComponent. -
Uses of RenderPriority in io.github.toberocat.guiengine.components.provided.item
Constructors in io.github.toberocat.guiengine.components.provided.item with parameters of type RenderPriorityModifierConstructorDescriptionSimpleItemComponent
(int offsetX, int offsetY, @NotNull RenderPriority priority, @NotNull String id, @NotNull List<GuiFunction> clickFunctions, @NotNull List<GuiFunction> dragFunctions, @NotNull List<GuiFunction> closeFunctions, @NotNull org.bukkit.inventory.ItemStack stack, boolean hidden) Constructor for SimpleItemComponent. -
Uses of RenderPriority in io.github.toberocat.guiengine.components.provided.paged
Constructors in io.github.toberocat.guiengine.components.provided.paged with parameters of type RenderPriorityModifierConstructorDescriptionPagedComponent
(int offsetX, int offsetY, int width, int height, @NotNull RenderPriority priority, @NotNull String id, @NotNull List<GuiFunction> clickFunctions, @NotNull List<GuiFunction> dragFunctions, @NotNull List<GuiFunction> closeFunctions, boolean hidden, @NotNull String targetGui, boolean copyAir, boolean interactions, @NotNull ParserContext parent, int[] pattern, int showingPage) Constructs a new PagedComponent instance with the specified parameters. -
Uses of RenderPriority in io.github.toberocat.guiengine.components.provided.toggle
Constructors in io.github.toberocat.guiengine.components.provided.toggle with parameters of type RenderPriorityModifierConstructorDescriptionToggleItemComponent
(int offsetX, int offsetY, int width, int height, @NotNull RenderPriority priority, @NotNull String id, @NotNull List<GuiFunction> clickFunctions, @NotNull List<GuiFunction> dragFunctions, @NotNull List<GuiFunction> closeFunctions, boolean hidden, ParserContext options, int selected) Constructs a ToggleItemComponent with the specified parameters. -
Uses of RenderPriority in io.github.toberocat.guiengine.render
Methods in io.github.toberocat.guiengine.render that return RenderPriorityModifier and TypeMethodDescriptionstatic RenderPriority
Returns the enum constant of this class with the specified name.static RenderPriority[]
RenderPriority.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of RenderPriority in io.github.toberocat.guiengine.utils
Methods in io.github.toberocat.guiengine.utils that return types with arguments of type RenderPriorityModifier and TypeMethodDescription@NotNull Optional<RenderPriority>
ParserContext.getOptionalRenderPriority
(@NotNull String field) Get an optional RenderPriority enum value from the child node of the current node based on the specified field name. -
Uses of RenderPriority in io.github.toberocat.guiengine.xml
Methods in io.github.toberocat.guiengine.xml that return RenderPriorityModifier and TypeMethodDescription@NotNull RenderPriority
XmlComponent.renderPriority()
Returns the value of therenderPriority
record component.Constructors in io.github.toberocat.guiengine.xml with parameters of type RenderPriorityModifierConstructorDescriptionXmlComponent
(@NotNull Map<String, com.fasterxml.jackson.databind.JsonNode> fields, @NotNull RenderPriority renderPriority, @NotNull String type, @NotNull String id) Creates an instance of aXmlComponent
record class.