Module com.github.sormuras.bach
Package com.github.sormuras.bach.project
Record Class DeclaredModule
java.lang.Object
java.lang.Record
com.github.sormuras.bach.project.DeclaredModule
- All Implemented Interfaces:
Comparable<DeclaredModule>
public record DeclaredModule(ModuleDescriptor descriptor, Path info, Optional<String> mainClass, Folders folders)
extends Record
implements Comparable<DeclaredModule>
A module declaration with its possibly targeted folders.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
static final record
-
Constructor Summary
ConstructorsConstructorDescriptionDeclaredModule
(ModuleDescriptor descriptor, Path info, Optional<String> mainClass, Folders folders) Creates an instance of aDeclaredModule
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
compareTo
(DeclaredModule other) Returns the value of thedescriptor
record component.final boolean
Indicates whether some other object is "equal to" this one.folders()
Returns the value of thefolders
record component.final int
hashCode()
Returns a hash code value for this object.info()
Returns the value of theinfo
record component.Returns the value of themainClass
record component.name()
static DeclaredModule
static DeclaredModule
of
(Path pathOfModuleInfoJavaOrItsParentDirectory, int version, FolderType... types) final String
toString()
Returns a string representation of this record class.withFolder
(Path directory, int release, FolderType... types) withMainClass
(String name) withResourcesFolder
(String directory) withResourcesFolder
(String directory, int release) withSourcesFolder
(String directory) withSourcesFolder
(String directory, int release)
-
Constructor Details
-
DeclaredModule
public DeclaredModule(ModuleDescriptor descriptor, Path info, Optional<String> mainClass, Folders folders) Creates an instance of aDeclaredModule
record class.- Parameters:
descriptor
- the value for thedescriptor
record componentinfo
- the value for theinfo
record componentmainClass
- the value for themainClass
record componentfolders
- the value for thefolders
record component
-
-
Method Details
-
name
-
of
-
of
public static DeclaredModule of(Path pathOfModuleInfoJavaOrItsParentDirectory, int version, FolderType... types) -
compareTo
- Specified by:
compareTo
in interfaceComparable<DeclaredModule>
-
withMainClass
-
withSourcesFolder
-
withSourcesFolder
-
withResourcesFolder
-
withResourcesFolder
-
withFolder
-
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
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)
. -
descriptor
Returns the value of thedescriptor
record component.- Returns:
- the value of the
descriptor
record component
-
info
Returns the value of theinfo
record component.- Returns:
- the value of the
info
record component
-
mainClass
Returns the value of themainClass
record component.- Returns:
- the value of the
mainClass
record component
-
folders
Returns the value of thefolders
record component.- Returns:
- the value of the
folders
record component
-