Record Class PlayerDisciplinaryAction
java.lang.Object
java.lang.Record
fr.prodrivers.bukkit.commons.storage.player.PlayerDisciplinaryAction
@Entity
public record PlayerDisciplinaryAction(UUID disciplinedPlayer, PlayerDisciplinaryAction.ActionType type, String message, Date expiration, UUID decider)
extends Record
Player Disciplinary Action
Record that represents a disciplinary action taken against a player, with an optional message and expiration.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Describes the possible disciplinary actions -
Constructor Summary
ConstructorsConstructorDescriptionPlayerDisciplinaryAction
(UUID disciplinedPlayer, PlayerDisciplinaryAction.ActionType type, String message, Date expiration, UUID decider) Creates an instance of aPlayerDisciplinaryAction
record class. -
Method Summary
Modifier and TypeMethodDescriptiondecider()
Returns the value of thedecider
record component.Returns the value of thedisciplinedPlayer
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of theexpiration
record component.final int
hashCode()
Returns a hash code value for this object.boolean
Get if the disciplinary action is still applicable at current timemessage()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Constructor Details
-
PlayerDisciplinaryAction
public PlayerDisciplinaryAction(UUID disciplinedPlayer, PlayerDisciplinaryAction.ActionType type, String message, Date expiration, UUID decider) Creates an instance of aPlayerDisciplinaryAction
record class.- Parameters:
disciplinedPlayer
- the value for thedisciplinedPlayer
record componenttype
- the value for thetype
record componentmessage
- the value for themessage
record componentexpiration
- the value for theexpiration
record componentdecider
- the value for thedecider
record component
-
-
Method Details
-
isApplicable
public boolean isApplicable()Get if the disciplinary action is still applicable at current time- Returns:
true
if disciplinary action is to be upheld
-
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)
. -
disciplinedPlayer
Returns the value of thedisciplinedPlayer
record component.- Returns:
- the value of the
disciplinedPlayer
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-
expiration
Returns the value of theexpiration
record component.- Returns:
- the value of the
expiration
record component
-
decider
Returns the value of thedecider
record component.- Returns:
- the value of the
decider
record component
-