Class RuntimeRepositoryEventUpdateFinished
java.lang.Object
com.io7m.coffeepick.repository.spi.RuntimeRepositoryEventUpdateFinished
- All Implemented Interfaces:
RuntimeRepositoryEventType
,RuntimeRepositoryEventUpdateFinishedType
,RuntimeRepositoryEventUpdateType
public final class RuntimeRepositoryEventUpdateFinished extends java.lang.Object implements RuntimeRepositoryEventUpdateFinishedType
A repository update has finished.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RuntimeRepositoryEventUpdateFinished.Builder
Builds instances of typeRuntimeRepositoryEventUpdateFinished
.Nested classes/interfaces inherited from interface com.io7m.coffeepick.repository.spi.RuntimeRepositoryEventUpdateType
RuntimeRepositoryEventUpdateType.Kind
-
Method Summary
Modifier and Type Method Description static RuntimeRepositoryEventUpdateFinished.Builder
builder()
Creates a builder forRuntimeRepositoryEventUpdateFinished
.static RuntimeRepositoryEventUpdateFinished
copyOf(RuntimeRepositoryEventUpdateFinishedType instance)
Creates an immutable copy of aRuntimeRepositoryEventUpdateFinishedType
value.boolean
equals(java.lang.Object another)
This instance is equal to all instances ofRuntimeRepositoryEventUpdateFinished
that have equal attribute values.int
hashCode()
Computes a hash code from attributes:repository
.java.net.URI
repository()
java.lang.String
toString()
Prints the immutable valueRuntimeRepositoryEventUpdateFinished
with attribute values.RuntimeRepositoryEventUpdateFinished
withRepository(java.net.URI value)
Copy the current immutable object by setting a value for therepository
attribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.io7m.coffeepick.repository.spi.RuntimeRepositoryEventUpdateFinishedType
kind
-
Method Details
-
repository
public java.net.URI repository()- Specified by:
repository
in interfaceRuntimeRepositoryEventType
- Specified by:
repository
in interfaceRuntimeRepositoryEventUpdateFinishedType
- Specified by:
repository
in interfaceRuntimeRepositoryEventUpdateType
- Returns:
- The value of the
repository
attribute
-
withRepository
Copy the current immutable object by setting a value for therepository
attribute. A shallow reference equality check is used to prevent copying of the same value by returningthis
.- Parameters:
value
- A new value for repository- Returns:
- A modified copy of the
this
object
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofRuntimeRepositoryEventUpdateFinished
that have equal attribute values.- Overrides:
equals
in classjava.lang.Object
- Returns:
true
ifthis
is equal toanother
instance
-
hashCode
public int hashCode()Computes a hash code from attributes:repository
.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueRuntimeRepositoryEventUpdateFinished
with attribute values.- Overrides:
toString
in classjava.lang.Object
- Returns:
- A string representation of the value
-
copyOf
public static RuntimeRepositoryEventUpdateFinished copyOf(RuntimeRepositoryEventUpdateFinishedType instance)Creates an immutable copy of aRuntimeRepositoryEventUpdateFinishedType
value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance
- The instance to copy- Returns:
- A copied immutable RuntimeRepositoryEventUpdateFinished instance
-
builder
Creates a builder forRuntimeRepositoryEventUpdateFinished
.RuntimeRepositoryEventUpdateFinished.builder() .setRepository(java.net.URI) // required
repository
.build();- Returns:
- A new RuntimeRepositoryEventUpdateFinished builder
-