Enum Class ScreenEvent.MouseButtonReleased.Post.Result
java.lang.Object
java.lang.Enum<ScreenEvent.MouseButtonReleased.Post.Result>
net.neoforged.neoforge.client.event.ScreenEvent.MouseButtonReleased.Post.Result
- All Implemented Interfaces:
Serializable
,Comparable<ScreenEvent.MouseButtonReleased.Post.Result>
,Constable
- Enclosing class:
ScreenEvent.MouseButtonReleased.Post
public static enum ScreenEvent.MouseButtonReleased.Post.Result
extends Enum<ScreenEvent.MouseButtonReleased.Post.Result>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe result ofContainerEventHandler.mouseReleased(double, double, int)
will be used to determine if the click was handled.Forces the event to mark the release as handled by the screen.Forces the event to mark the release as not handled by the screen. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FORCE_HANDLED
Forces the event to mark the release as handled by the screen. -
DEFAULT
The result ofContainerEventHandler.mouseReleased(double, double, int)
will be used to determine if the click was handled. -
FORCE_UNHANDLED
Forces the event to mark the release as not handled by the screen.
-
-
Constructor Details
-
Result
private Result()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-