Record Class StructuredConcurrencySixthPreviewExamples.CommandResult
java.lang.Object
java.lang.Record
net.jrodolfo.java_evolution.java26.structured_concurrency.StructuredConcurrencySixthPreviewExamples.CommandResult
- Enclosing class:
StructuredConcurrencySixthPreviewExamples
-
Constructor Summary
ConstructorsConstructorDescriptionCommandResult(int exitCode, String output) Creates an instance of aCommandResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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
-
CommandResult
Creates an instance of aCommandResultrecord class.- Parameters:
exitCode- the value for theexitCoderecord componentoutput- the value for theoutputrecord 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
public int exitCode()Returns the value of theexitCoderecord component.- Returns:
- the value of the
exitCoderecord component
-
output
Returns the value of theoutputrecord component.- Returns:
- the value of the
outputrecord component
-