Record Class UnsafeMemoryAccessDeprecationExamples.ProcessResult
java.lang.Object
java.lang.Record
net.jrodolfo.java_evolution.java23.unsafe_memory_access_deprecation.UnsafeMemoryAccessDeprecationExamples.ProcessResult
- Record Components:
exitCode- process exit codeoutput- merged standard output and standard error
- Enclosing class:
UnsafeMemoryAccessDeprecationExamples
-
Constructor Summary
ConstructorsConstructorDescriptionProcessResult(int exitCode, String output) Creates an instance of aProcessResultrecord 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
-
ProcessResult
-
-
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
-