Record Class TeamModel
java.lang.Object
java.lang.Record
fr.multimc.api.commons.data.sources.rest.models.TeamModel
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@NotNull String
code()
Returns the value of thecode
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotNull UserModel[]
members()
Returns the value of themembers
record component.@NotNull String
name()
Returns the value of thename
record component.int
ownerId()
Returns the value of theownerId
record component.int
score()
Returns the value of thescore
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
TeamModel
public TeamModel(@NotNull @NotNull String code, @NotNull @NotNull String name, int score, int ownerId, @NotNull @NotNull UserModel[] members) Creates an instance of aTeamModel
record class.- Parameters:
code
- the value for thecode
record componentname
- the value for thename
record componentscore
- the value for thescore
record componentownerId
- the value for theownerId
record componentmembers
- the value for themembers
record component
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
code
Returns the value of thecode
record component.- Returns:
- the value of the
code
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
score
public int score()Returns the value of thescore
record component.- Returns:
- the value of the
score
record component
-
ownerId
public int ownerId()Returns the value of theownerId
record component.- Returns:
- the value of the
ownerId
record component
-
members
Returns the value of themembers
record component.- Returns:
- the value of the
members
record component
-