Package com.io7m.coffeepick.runtime
Class RuntimeRepositoryBranding.Builder
java.lang.Object
com.io7m.coffeepick.runtime.RuntimeRepositoryBranding.Builder
- Enclosing class:
- RuntimeRepositoryBranding
public static final class RuntimeRepositoryBranding.Builder
extends java.lang.Object
Builds instances of type
RuntimeRepositoryBranding.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Method Summary
Modifier and Type Method Description RuntimeRepositoryBrandingbuild()Builds a newRuntimeRepositoryBranding.RuntimeRepositoryBranding.Builderfrom(RuntimeRepositoryBrandingType instance)Fill a builder with attribute values from the providedRuntimeRepositoryBrandingTypeinstance.RuntimeRepositoryBranding.BuildersetLogo(java.net.URI logo)Initializes the value for thelogoattribute.RuntimeRepositoryBranding.BuildersetSite(java.net.URI site)Initializes the value for thesiteattribute.RuntimeRepositoryBranding.BuildersetSubtitle(java.lang.String subtitle)Initializes the value for thesubtitleattribute.RuntimeRepositoryBranding.BuildersetTitle(java.lang.String title)Initializes the value for thetitleattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedRuntimeRepositoryBrandingTypeinstance. 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
-
setLogo
Initializes the value for thelogoattribute.- Parameters:
logo- The value for logo- Returns:
thisbuilder for use in a chained invocation
-
setTitle
Initializes the value for thetitleattribute.- Parameters:
title- The value for title- Returns:
thisbuilder for use in a chained invocation
-
setSubtitle
Initializes the value for thesubtitleattribute.- Parameters:
subtitle- The value for subtitle- Returns:
thisbuilder for use in a chained invocation
-
setSite
Initializes the value for thesiteattribute.- Parameters:
site- The value for site- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newRuntimeRepositoryBranding.- Returns:
- An immutable instance of RuntimeRepositoryBranding
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-