Record Class MarkdownDocumentationCommentsExamples.JavaDocResult
java.lang.Object
java.lang.Record
net.jrodolfo.java_evolution.java23.markdown_documentation_comments.MarkdownDocumentationCommentsExamples.JavaDocResult
- Record Components:
exitCode- process exit codeoutput- merged standard output and standard errordocumentationDirectory- generated documentation directory
- Enclosing class:
MarkdownDocumentationCommentsExamples
-
Constructor Summary
ConstructorsConstructorDescriptionJavaDocResult(int exitCode, String output, Path documentationDirectory) Creates an instance of aJavaDocResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedocumentationDirectoryrecord component.final booleanIndicates whether some other object is "equal to" this one.intexitCode()Returns the value of theexitCoderecord component.final inthashCode()Returns a hash code value for this object.output()Returns the value of theoutputrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
JavaDocResult
Creates an instance of aJavaDocResultrecord class.- Parameters:
exitCode- the value for theexitCoderecord componentoutput- the value for theoutputrecord componentdocumentationDirectory- the value for thedocumentationDirectoryrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
exitCode
-
output
-
documentationDirectory
Returns the value of thedocumentationDirectoryrecord component.- Returns:
- the value of the
documentationDirectoryrecord component
-