Package com.spotify.github.v3.search
Class ImmutableSearch.Builder
- java.lang.Object
-
- com.spotify.github.v3.search.ImmutableSearch.Builder
-
- Enclosing class:
- ImmutableSearch
@NotThreadSafe public static final class ImmutableSearch.Builder extends Object
Builds instances of typeImmutableSearch. Initialize attributes and then invoke thebuild()method to create an immutable instance.Builderis not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableSearchbuild()Builds a newImmutableSearch.ImmutableSearch.Builderfrom(Search instance)Fill a builder with attribute values from the providedSearchinstance.ImmutableSearch.BuilderincompleteResults(Boolean incompleteResults)Initializes the value for theincompleteResultsattribute.ImmutableSearch.BuildertotalCount(Integer totalCount)Initializes the value for thetotalCountattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableSearch.Builder from(Search instance)
Fill a builder with attribute values from the providedSearchinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
totalCount
@CanIgnoreReturnValue public final ImmutableSearch.Builder totalCount(@Nullable Integer totalCount)
Initializes the value for thetotalCountattribute.- Parameters:
totalCount- The value for totalCount (can benull)- Returns:
thisbuilder for use in a chained invocation
-
incompleteResults
@CanIgnoreReturnValue public final ImmutableSearch.Builder incompleteResults(@Nullable Boolean incompleteResults)
Initializes the value for theincompleteResultsattribute.- Parameters:
incompleteResults- The value for incompleteResults (can benull)- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableSearch build()
Builds a newImmutableSearch.- Returns:
- An immutable instance of Search
- Throws:
IllegalStateException- if any required attributes are missing
-
-