Package lib.dto
Record Class PackageDTO
java.lang.Object
java.lang.Record
lib.dto.PackageDTO
- Record Components:
name
- - name of the packagepath
- - path of the messageclasses
- -List
ofClassInterfaceDTO
, which are the classes of the packageinterfaces
- -List
ofClassInterfaceDTO
, which are the interfaces of the package
public record PackageDTO(String name, String path, List<ClassInterfaceDTO> classes, List<ClassInterfaceDTO> interfaces)
extends Record
Record representing a serializable version of a
PackageReport
.-
Constructor Summary
ConstructorsConstructorDescriptionPackageDTO
(String name, String path, List<ClassInterfaceDTO> classes, List<ClassInterfaceDTO> interfaces) Creates an instance of aPackageDTO
record class. -
Method Summary
Modifier and TypeMethodDescriptionclasses()
Returns the value of theclasses
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.Returns the value of theinterfaces
record component.name()
Returns the value of thename
record component.path()
Returns the value of thepath
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PackageDTO
public PackageDTO(String name, String path, List<ClassInterfaceDTO> classes, List<ClassInterfaceDTO> interfaces) Creates an instance of aPackageDTO
record class.- Parameters:
name
- the value for thename
record componentpath
- the value for thepath
record componentclasses
- the value for theclasses
record componentinterfaces
- the value for theinterfaces
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. 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
-
path
Returns the value of thepath
record component.- Returns:
- the value of the
path
record component
-
classes
Returns the value of theclasses
record component.- Returns:
- the value of the
classes
record component
-
interfaces
Returns the value of theinterfaces
record component.- Returns:
- the value of the
interfaces
record component
-