java.lang.Object
java.lang.Record
com.github.sormuras.bach.project.ProjectSpaces
- All Implemented Interfaces:
Project.Component
,Iterable<ProjectSpace>
public record ProjectSpaces(List<ProjectSpace> values)
extends Record
implements Project.Component, Iterable<ProjectSpace>
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionProjectSpaces
(List<ProjectSpace> values) Creates an instance of aProjectSpaces
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.iterator()
final String
toString()
Returns a string representation of this record class.tweakModule
(DeclaredModule.Tweak tweak) values()
Returns the value of thevalues
record component.with
(ProjectSpace value) withSpace
(String name, ProjectSpace.Operator operator) withSpace
(String name, Set<String> parents, ProjectSpace.Operator operator) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
ProjectSpaces
Creates an instance of aProjectSpaces
record class.- Parameters:
values
- the value for thevalues
record component
-
-
Method Details
-
find
-
iterator
- Specified by:
iterator
in interfaceIterable<ProjectSpace>
-
with
-
withSpace
-
withSpace
-
tweakModule
-
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)
. -
values
Returns the value of thevalues
record component.- Returns:
- the value of the
values
record component
-