Record Class Field
java.lang.Object
java.lang.Record
fr.multimc.api.commons.data.sources.database.models.Field
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.getField
(DatabaseType databaseType) final int
hashCode()
Returns a hash code value for this object.@NotNull String
name()
Returns the value of thename
record component.@NotNull Property[]
Returns the value of theproperties
record component.int
size()
Returns the value of thesize
record component.final String
toString()
Returns a string representation of this record class.@NotNull FieldType
type()
Returns the value of thetype
record component.
-
Constructor Details
-
Field
-
Field
public Field(@NotNull @NotNull String name, @NotNull @NotNull FieldType type, int size, @NotNull @NotNull Property... properties) Creates an instance of aField
record class.- Parameters:
name
- the value for thename
record componenttype
- the value for thetype
record componentsize
- the value for thesize
record componentproperties
- the value for theproperties
record component
-
-
Method Details
-
getField
-
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 '=='. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
size
public int size()Returns the value of thesize
record component.- Returns:
- the value of the
size
record component
-
properties
Returns the value of theproperties
record component.- Returns:
- the value of the
properties
record component
-