Class ImmutableConfig.Builder
java.lang.Object
org.kiwiproject.consul.model.agent.ImmutableConfig.Builder
- Enclosing class:
- ImmutableConfig
Builds instances of type
ImmutableConfig.
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 TypeMethodDescriptionbuild()Builds a newImmutableConfig.final ImmutableConfig.Builderdatacenter(String datacenter) Initializes the value for thedatacenterattribute.final ImmutableConfig.BuilderFill a builder with attribute values from the providedConfiginstance.final ImmutableConfig.BuilderInitializes the value for thenodeNameattribute.final ImmutableConfig.BuilderInitializes the value for therevisionattribute.final ImmutableConfig.Builderserver(boolean server) Initializes the value for theserverattribute.final ImmutableConfig.BuilderInitializes the value for theversionattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedConfiginstance. 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
-
datacenter
Initializes the value for thedatacenterattribute.- Parameters:
datacenter- The value for datacenter- Returns:
thisbuilder for use in a chained invocation
-
nodeName
Initializes the value for thenodeNameattribute.- Parameters:
nodeName- The value for nodeName- Returns:
thisbuilder for use in a chained invocation
-
revision
Initializes the value for therevisionattribute.- Parameters:
revision- The value for revision- Returns:
thisbuilder for use in a chained invocation
-
server
Initializes the value for theserverattribute.- Parameters:
server- The value for server- Returns:
thisbuilder for use in a chained invocation
-
version
Initializes the value for theversionattribute.- Parameters:
version- The value for version- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newImmutableConfig.- Returns:
- An immutable instance of Config
- Throws:
IllegalStateException- if any required attributes are missing
-