Record Class SearchDirectoryResponse
java.lang.Object
java.lang.Record
inha.git.project.api.controller.dto.response.SearchDirectoryResponse
- All Implemented Interfaces:
SearchFileResponse
public record SearchDirectoryResponse(@NotNull String name, @NotNull String type, List<SearchFileResponse> fileList)
extends Record
implements SearchFileResponse
-
Constructor Summary
ConstructorsConstructorDescriptionSearchDirectoryResponse
(@NotNull String name, @NotNull String type, List<SearchFileResponse> fileList) Creates an instance of aSearchDirectoryResponse
record class.SearchDirectoryResponse
(String name, List<SearchFileResponse> fileList) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.fileList()
Returns the value of thefileList
record component.getName()
getType()
final int
hashCode()
Returns a hash code value for this object.@NotNull String
name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.@NotNull String
type()
Returns the value of thetype
record component.
-
Constructor Details
-
SearchDirectoryResponse
-
SearchDirectoryResponse
public SearchDirectoryResponse(@NotNull @NotNull String name, @NotNull @NotNull String type, List<SearchFileResponse> fileList) Creates an instance of aSearchDirectoryResponse
record class.- Parameters:
name
- the value for thename
record componenttype
- the value for thetype
record componentfileList
- the value for thefileList
record component
-
-
Method Details
-
getName
- Specified by:
getName
in interfaceSearchFileResponse
-
getType
- Specified by:
getType
in interfaceSearchFileResponse
-
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)
. -
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
-
fileList
Returns the value of thefileList
record component.- Returns:
- the value of the
fileList
record component
-