Record Class WatchEvent<T>
java.lang.Object
java.lang.Record
io.micronaut.kubernetes.client.openapi.watcher.WatchEvent<T>
- Type Parameters:
T- the object type- Record Components:
type- the type of event (ADDED, MODIFIED, DELETED, ERROR, BOOKMARK)object- the objectstatus- the instance of V1Status
-
Constructor Summary
ConstructorsConstructorDescriptionWatchEvent(@NonNull String type, @Nullable T object, @Nullable V1Status status) Creates an instance of aWatchEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@Nullable Tobject()Returns the value of theobjectrecord component.@Nullable V1Statusstatus()Returns the value of thestatusrecord component.final StringtoString()Returns a string representation of this record class.@NonNull Stringtype()Returns the value of thetyperecord component.
-
Constructor Details
-
WatchEvent
-
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
type
-
object
-
status
-