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 classRuntimeRepositoryEventUpdateFinished.BuilderBuilds 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.Builderbuilder()Creates a builder forRuntimeRepositoryEventUpdateFinished.static RuntimeRepositoryEventUpdateFinishedcopyOf(RuntimeRepositoryEventUpdateFinishedType instance)Creates an immutable copy of aRuntimeRepositoryEventUpdateFinishedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofRuntimeRepositoryEventUpdateFinishedthat have equal attribute values.inthashCode()Computes a hash code from attributes:repository.java.net.URIrepository()java.lang.StringtoString()Prints the immutable valueRuntimeRepositoryEventUpdateFinishedwith attribute values.RuntimeRepositoryEventUpdateFinishedwithRepository(java.net.URI value)Copy the current immutable object by setting a value for therepositoryattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.coffeepick.repository.spi.RuntimeRepositoryEventUpdateFinishedType
kind
-
Method Details
-
repository
public java.net.URI repository()- Specified by:
repositoryin interfaceRuntimeRepositoryEventType- Specified by:
repositoryin interfaceRuntimeRepositoryEventUpdateFinishedType- Specified by:
repositoryin interfaceRuntimeRepositoryEventUpdateType- Returns:
- The value of the
repositoryattribute
-
withRepository
Copy the current immutable object by setting a value for therepositoryattribute. 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
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofRuntimeRepositoryEventUpdateFinishedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:repository.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueRuntimeRepositoryEventUpdateFinishedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
copyOf
public static RuntimeRepositoryEventUpdateFinished copyOf(RuntimeRepositoryEventUpdateFinishedType instance)Creates an immutable copy of aRuntimeRepositoryEventUpdateFinishedTypevalue. 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) // requiredrepository.build();- Returns:
- A new RuntimeRepositoryEventUpdateFinished builder
-