Record Class TestResourcesContainer
java.lang.Object
java.lang.Record
io.micronaut.testresources.controlpanel.TestResourcesContainer
- Record Components:
scope
- the test resources scopeid
- the container idname
- the container namenetwork
- the container networkimageName
- the image name
@Introspected
public record TestResourcesContainer(String scope, String id, String name, String network, String imageName)
extends Record
Information about a Docker container which was
started by the test resources service.
-
Constructor Summary
-
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.id()
Returns the value of theid
record component.Returns the value of theimageName
record component.name()
Returns the value of thename
record component.network()
Returns the value of thenetwork
record component.scope()
Returns the value of thescope
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
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)
. -
scope
Returns the value of thescope
record component.- Returns:
- the value of the
scope
record component
-
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
network
Returns the value of thenetwork
record component.- Returns:
- the value of the
network
record component
-
imageName
Returns the value of theimageName
record component.- Returns:
- the value of the
imageName
record component
-