Package com.io7m.brooklime.api
Class BLStagingRepositoryDrop
java.lang.Object
com.io7m.brooklime.api.BLStagingRepositoryDrop
- All Implemented Interfaces:
BLStagingRepositoryBulkRequestType,BLStagingRepositoryDropType
A request to drop a set of staging repositories.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds instances of typeBLStagingRepositoryDrop. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder forBLStagingRepositoryDrop.static BLStagingRepositoryDropcopyOf(BLStagingRepositoryDropType instance) Creates an immutable copy of aBLStagingRepositoryDropTypevalue.booleanThis instance is equal to all instances ofBLStagingRepositoryDropthat have equal attribute values.inthashCode()Computes a hash code from attributes:stagingRepositories.toString()Prints the immutable valueBLStagingRepositoryDropwith attribute values.final BLStagingRepositoryDropwithStagingRepositories(Iterable<String> elements) Copy the current immutable object with elements that replace the content ofstagingRepositories.final BLStagingRepositoryDropwithStagingRepositories(String... elements) Copy the current immutable object with elements that replace the content ofstagingRepositories.
-
Method Details
-
stagingRepositories
- Specified by:
stagingRepositoriesin interfaceBLStagingRepositoryBulkRequestType- Specified by:
stagingRepositoriesin interfaceBLStagingRepositoryDropType- Returns:
- The value of the
stagingRepositoriesattribute
-
withStagingRepositories
Copy the current immutable object with elements that replace the content ofstagingRepositories.- Parameters:
elements- The elements to set- Returns:
- A modified copy of
thisobject
-
withStagingRepositories
Copy the current immutable object with elements that replace the content ofstagingRepositories. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
elements- An iterable of stagingRepositories elements to set- Returns:
- A modified copy of
thisobject
-
equals
This instance is equal to all instances ofBLStagingRepositoryDropthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:stagingRepositories. -
toString
Prints the immutable valueBLStagingRepositoryDropwith attribute values. -
copyOf
Creates an immutable copy of aBLStagingRepositoryDropTypevalue. 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 BLStagingRepositoryDrop instance
-
builder
Creates a builder forBLStagingRepositoryDrop.BLStagingRepositoryDrop.builder() .addStagingRepositories|addAllStagingRepositories(String) //stagingRepositorieselements .build();- Returns:
- A new BLStagingRepositoryDrop builder
-