Package pl.poznan.put.external.dssr
Class ImmutableNucleotide.Builder
java.lang.Object
pl.poznan.put.external.dssr.ImmutableNucleotide.Builder
- Enclosing class:
- ImmutableNucleotide
Builds instances of type
ImmutableNucleotide
.
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 newImmutableNucleotide
.Initializes the value for thechainName
attribute.from
(Nucleotide instance) Fill a builder with attribute values from the providedNucleotide
instance.Initializes the value for theid
attribute.oneLetterName
(String oneLetterName) Initializes the value for theoneLetterName
attribute.residueNumber
(int residueNumber) Initializes the value for theresidueNumber
attribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedNucleotide
instance. 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:
this
builder for use in a chained invocation
-
id
Initializes the value for theid
attribute.- Parameters:
id
- The value for id- Returns:
this
builder for use in a chained invocation
-
chainName
Initializes the value for thechainName
attribute.- Parameters:
chainName
- The value for chainName- Returns:
this
builder for use in a chained invocation
-
oneLetterName
Initializes the value for theoneLetterName
attribute.- Parameters:
oneLetterName
- The value for oneLetterName- Returns:
this
builder for use in a chained invocation
-
residueNumber
Initializes the value for theresidueNumber
attribute.- Parameters:
residueNumber
- The value for residueNumber- Returns:
this
builder for use in a chained invocation
-
build
Builds a newImmutableNucleotide
.- Returns:
- An immutable instance of Nucleotide
- Throws:
IllegalStateException
- if any required attributes are missing
-