Package com.spotify.github.v3.search
Class ImmutableSearchRepositories
- java.lang.Object
-
- com.spotify.github.v3.search.ImmutableSearchRepositories
-
- All Implemented Interfaces:
Search,SearchRepositories
@ParametersAreNonnullByDefault @Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableSearchRepositories extends Object implements SearchRepositories
Immutable implementation ofSearchRepositories.Use the builder to create immutable instances:
ImmutableSearchRepositories.builder().
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImmutableSearchRepositories.BuilderBuilds instances of typeImmutableSearchRepositories.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImmutableSearchRepositories.Builderbuilder()Creates a builder forImmutableSearchRepositories.static ImmutableSearchRepositoriescopyOf(SearchRepositories instance)Creates an immutable copy of aSearchRepositoriesvalue.booleanequals(Object another)This instance is equal to all instances ofImmutableSearchRepositoriesthat have equal attribute values.inthashCode()Computes a hash code from attributes:totalCount,incompleteResults,items.BooleanincompleteResults()Are returned results incompleteList<Repository>items()Repositories search resultsStringtoString()Prints the immutable valueSearchRepositorieswith attribute values.IntegertotalCount()Total count of search hitsImmutableSearchRepositorieswithIncompleteResults(Boolean value)Copy the current immutable object by setting a value for theincompleteResultsattribute.ImmutableSearchRepositorieswithItems(Repository... elements)Copy the current immutable object with elements that replace the content ofitems.ImmutableSearchRepositorieswithItems(Iterable<? extends Repository> elements)Copy the current immutable object with elements that replace the content ofitems.ImmutableSearchRepositorieswithTotalCount(Integer value)Copy the current immutable object by setting a value for thetotalCountattribute.
-
-
-
Method Detail
-
totalCount
@Nullable public Integer totalCount()
Total count of search hits- Specified by:
totalCountin interfaceSearch
-
incompleteResults
@Nullable public Boolean incompleteResults()
Are returned results incomplete- Specified by:
incompleteResultsin interfaceSearch
-
items
@Nullable public List<Repository> items()
Repositories search results- Specified by:
itemsin interfaceSearchRepositories
-
withTotalCount
public final ImmutableSearchRepositories withTotalCount(@Nullable Integer value)
Copy the current immutable object by setting a value for thetotalCountattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for totalCount (can benull)- Returns:
- A modified copy of the
thisobject
-
withIncompleteResults
public final ImmutableSearchRepositories withIncompleteResults(@Nullable Boolean value)
Copy the current immutable object by setting a value for theincompleteResultsattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for incompleteResults (can benull)- Returns:
- A modified copy of the
thisobject
-
withItems
public final ImmutableSearchRepositories withItems(@Nullable Repository... elements)
Copy the current immutable object with elements that replace the content ofitems.- Parameters:
elements- The elements to set- Returns:
- A modified copy of
thisobject
-
withItems
public final ImmutableSearchRepositories withItems(@Nullable Iterable<? extends Repository> elements)
Copy the current immutable object with elements that replace the content ofitems. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
elements- An iterable of items elements to set- Returns:
- A modified copy of
thisobject
-
equals
public boolean equals(@Nullable Object another)This instance is equal to all instances ofImmutableSearchRepositoriesthat have equal attribute values.
-
hashCode
public int hashCode()
Computes a hash code from attributes:totalCount,incompleteResults,items.
-
toString
public String toString()
Prints the immutable valueSearchRepositorieswith attribute values.
-
copyOf
public static ImmutableSearchRepositories copyOf(SearchRepositories instance)
Creates an immutable copy of aSearchRepositoriesvalue. 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 SearchRepositories instance
-
builder
public static ImmutableSearchRepositories.Builder builder()
Creates a builder forImmutableSearchRepositories.ImmutableSearchRepositories.builder() .totalCount(Integer | null) // nullabletotalCount.incompleteResults(Boolean | null) // nullableincompleteResults.items(List<com.spotify.github.v3.repos.Repository> | null) // nullableitems.build();- Returns:
- A new ImmutableSearchRepositories builder
-
-