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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryConstructors
- 
Method SummaryModifier 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_HANDLEDForces the event to mark the release as handled by the screen.
- 
DEFAULTThe result ofContainerEventHandler.mouseReleased(double, double, int)will be used to determine if the click was handled.
- 
FORCE_UNHANDLEDForces the event to mark the release as not handled by the screen.
 
- 
- 
Constructor Details- 
Resultprivate Result()
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-