Package io.quarkus.test.component
Record Class BuildResult
java.lang.Object
java.lang.Record
io.quarkus.test.component.BuildResult
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]Returns the value of thecomponentsProviderrecord component.Returns the value of theconfigMappingsrecord component.final booleanIndicates whether some other object is "equal to" this one.failure()Returns the value of thefailurerecord component.Returns the value of thegeneratedClassesrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theinterceptorMethodsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
BuildResult
BuildResult(Map<String, byte[]> generatedClasses, byte[] componentsProvider, Map<String, Set<String>> configMappings, Map<String, String[]> interceptorMethods, Throwable failure) Creates an instance of aBuildResultrecord class.- Parameters:
generatedClasses- the value for thegeneratedClassesrecord componentcomponentsProvider- the value for thecomponentsProviderrecord componentconfigMappings- the value for theconfigMappingsrecord componentinterceptorMethods- the value for theinterceptorMethodsrecord componentfailure- the value for thefailurerecord component
-
-
Method Details
-
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
public final int 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). -
generatedClasses
Returns the value of thegeneratedClassesrecord component.- Returns:
- the value of the
generatedClassesrecord component
-
componentsProvider
public byte[] componentsProvider()Returns the value of thecomponentsProviderrecord component.- Returns:
- the value of the
componentsProviderrecord component
-
configMappings
Returns the value of theconfigMappingsrecord component.- Returns:
- the value of the
configMappingsrecord component
-
interceptorMethods
Returns the value of theinterceptorMethodsrecord component.- Returns:
- the value of the
interceptorMethodsrecord component
-
failure
Returns the value of thefailurerecord component.- Returns:
- the value of the
failurerecord component
-