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.ObjectBuilds instances of typeRuntimeRepositoryBranding. 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 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 Detail
-
from
public final RuntimeRepositoryBranding.Builder from(RuntimeRepositoryBrandingType instance)
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
public final RuntimeRepositoryBranding.Builder setLogo(java.net.URI logo)
Initializes the value for thelogoattribute.- Parameters:
logo- The value for logo- Returns:
thisbuilder for use in a chained invocation
-
setTitle
public final RuntimeRepositoryBranding.Builder setTitle(java.lang.String title)
Initializes the value for thetitleattribute.- Parameters:
title- The value for title- Returns:
thisbuilder for use in a chained invocation
-
setSubtitle
public final RuntimeRepositoryBranding.Builder setSubtitle(java.lang.String subtitle)
Initializes the value for thesubtitleattribute.- Parameters:
subtitle- The value for subtitle- Returns:
thisbuilder for use in a chained invocation
-
setSite
public final RuntimeRepositoryBranding.Builder setSite(java.net.URI site)
Initializes the value for thesiteattribute.- Parameters:
site- The value for site- Returns:
thisbuilder for use in a chained invocation
-
build
public RuntimeRepositoryBranding build()
Builds a newRuntimeRepositoryBranding.- Returns:
- An immutable instance of RuntimeRepositoryBranding
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-
-