Package dev.crafty.core.items
Record Class ItemActionCondition
java.lang.Object
java.lang.Record
dev.crafty.core.items.ItemActionCondition
-
Constructor Summary
ConstructorsConstructorDescriptionItemActionCondition
(String expression, String denyMessage) Creates an instance of aItemActionCondition
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
canExecute
(org.bukkit.entity.Player player) Returns the value of thedenyMessage
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of theexpression
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ItemActionCondition
Creates an instance of aItemActionCondition
record class.- Parameters:
expression
- the value for theexpression
record componentdenyMessage
- the value for thedenyMessage
record component
-
-
Method Details
-
canExecute
public boolean canExecute(org.bukkit.entity.Player player) -
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)
. -
expression
Returns the value of theexpression
record component.- Returns:
- the value of the
expression
record component
-
denyMessage
Returns the value of thedenyMessage
record component.- Returns:
- the value of the
denyMessage
record component
-