Package com.io7m.jproperties.monad
Class JPropertySuccess.Builder<A>
java.lang.Object
com.io7m.jproperties.monad.JPropertySuccess.Builder<A>
- Enclosing class:
- JPropertySuccess<A>
Builds instances of type
JPropertySuccess.
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 TypeMethodDescriptionfinal JPropertySuccess.Builder<A>addAllErrors(Iterable<? extends JPropertyError> elements) Adds elements toerrorslist.final JPropertySuccess.Builder<A>addAllWarnings(Iterable<? extends JPropertyWarning> elements) Adds elements towarningslist.final JPropertySuccess.Builder<A>addErrors(JPropertyError element) Adds one element toerrorslist.final JPropertySuccess.Builder<A>addErrors(JPropertyError... elements) Adds elements toerrorslist.final JPropertySuccess.Builder<A>addWarnings(JPropertyWarning element) Adds one element towarningslist.final JPropertySuccess.Builder<A>addWarnings(JPropertyWarning... elements) Adds elements towarningslist.build()Builds a newJPropertySuccess.final JPropertySuccess.Builder<A>from(JPropertyParseMonadType.JPropertySuccessType<A> instance) Fill a builder with attribute values from the providedJPropertySuccessTypeinstance.final JPropertySuccess.Builder<A>setErrors(Iterable<? extends JPropertyError> elements) Sets or replaces all elements forerrorslist.final JPropertySuccess.Builder<A>Initializes the value for theresultattribute.final JPropertySuccess.Builder<A>setWarnings(Iterable<? extends JPropertyWarning> elements) Sets or replaces all elements forwarningslist.
-
Method Details
-
from
public final JPropertySuccess.Builder<A> from(JPropertyParseMonadType.JPropertySuccessType<A> instance) Fill a builder with attribute values from the providedJPropertySuccessTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values. Collection elements and entries will be added, not replaced.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setResult
Initializes the value for theresultattribute.- Parameters:
result- The value for result- Returns:
thisbuilder for use in a chained invocation
-
addWarnings
Adds one element towarningslist.- Parameters:
element- A warnings element- Returns:
thisbuilder for use in a chained invocation
-
addWarnings
Adds elements towarningslist.- Parameters:
elements- An array of warnings elements- Returns:
thisbuilder for use in a chained invocation
-
setWarnings
Sets or replaces all elements forwarningslist.- Parameters:
elements- An iterable of warnings elements- Returns:
thisbuilder for use in a chained invocation
-
addAllWarnings
public final JPropertySuccess.Builder<A> addAllWarnings(Iterable<? extends JPropertyWarning> elements) Adds elements towarningslist.- Parameters:
elements- An iterable of warnings elements- Returns:
thisbuilder for use in a chained invocation
-
addErrors
Adds one element toerrorslist.- Parameters:
element- A errors element- Returns:
thisbuilder for use in a chained invocation
-
addErrors
Adds elements toerrorslist.- Parameters:
elements- An array of errors elements- Returns:
thisbuilder for use in a chained invocation
-
setErrors
Sets or replaces all elements forerrorslist.- Parameters:
elements- An iterable of errors elements- Returns:
thisbuilder for use in a chained invocation
-
addAllErrors
Adds elements toerrorslist.- Parameters:
elements- An iterable of errors elements- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newJPropertySuccess.- Returns:
- An immutable instance of JPropertySuccess
- Throws:
IllegalStateException- if any required attributes are missing
-