Package com.io7m.smfj.processing.api
Class SMFFilterCommandContext.Builder
- java.lang.Object
-
- com.io7m.smfj.processing.api.SMFFilterCommandContext.Builder
-
- Enclosing class:
- SMFFilterCommandContext
public static final class SMFFilterCommandContext.Builder extends java.lang.ObjectBuilds instances of typeSMFFilterCommandContext. 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 SMFFilterCommandContextbuild()Builds a newSMFFilterCommandContext.SMFFilterCommandContext.Builderfrom(SMFFilterCommandContextType instance)Fill a builder with attribute values from the providedSMFFilterCommandContextTypeinstance.SMFFilterCommandContext.BuildersetCurrentPath(java.nio.file.Path currentPath)Initializes the value for thecurrentPathattribute.SMFFilterCommandContext.BuildersetSourceRoot(java.nio.file.Path sourceRoot)Initializes the value for thesourceRootattribute.
-
-
-
Method Detail
-
from
public final SMFFilterCommandContext.Builder from(SMFFilterCommandContextType instance)
Fill a builder with attribute values from the providedSMFFilterCommandContextTypeinstance. 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
-
setSourceRoot
public final SMFFilterCommandContext.Builder setSourceRoot(java.nio.file.Path sourceRoot)
Initializes the value for thesourceRootattribute.- Parameters:
sourceRoot- The value for sourceRoot- Returns:
thisbuilder for use in a chained invocation
-
setCurrentPath
public final SMFFilterCommandContext.Builder setCurrentPath(java.nio.file.Path currentPath)
Initializes the value for thecurrentPathattribute.- Parameters:
currentPath- The value for currentPath- Returns:
thisbuilder for use in a chained invocation
-
build
public SMFFilterCommandContext build()
Builds a newSMFFilterCommandContext.- Returns:
- An immutable instance of SMFFilterCommandContext
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-
-