Package com.io7m.coffeepick.runtime
Class RuntimeBuild.Builder
java.lang.Object
com.io7m.coffeepick.runtime.RuntimeBuild.Builder
- Enclosing class:
- RuntimeBuild
public static final class RuntimeBuild.Builder
extends java.lang.Object
Builds instances of type
RuntimeBuild.
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 RuntimeBuildbuild()Builds a newRuntimeBuild.RuntimeBuild.Builderfrom(RuntimeBuildType instance)Fill a builder with attribute values from the providedRuntimeBuildTypeinstance.RuntimeBuild.BuildersetBuildNumber(java.lang.String buildNumber)Initializes the value for thebuildNumberattribute.RuntimeBuild.BuildersetTime(java.time.OffsetDateTime time)Initializes the value for thetimeattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedRuntimeBuildTypeinstance. 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
-
setBuildNumber
Initializes the value for thebuildNumberattribute.- Parameters:
buildNumber- The value for buildNumber- Returns:
thisbuilder for use in a chained invocation
-
setTime
Initializes the value for thetimeattribute.- Parameters:
time- The value for time- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newRuntimeBuild.- Returns:
- An immutable instance of RuntimeBuild
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-