Package com.io7m.jproperties.monad
Class JPropertyFailure.Builder<A>
java.lang.Object
com.io7m.jproperties.monad.JPropertyFailure.Builder<A>
- Enclosing class:
- JPropertyFailure<A>
Builds instances of type
JPropertyFailure.
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 JPropertyFailure.Builder<A>addAllErrors(Iterable<? extends JPropertyError> elements) Adds elements toerrorslist.final JPropertyFailure.Builder<A>addAllWarnings(Iterable<? extends JPropertyWarning> elements) Adds elements towarningslist.final JPropertyFailure.Builder<A>addErrors(JPropertyError element) Adds one element toerrorslist.final JPropertyFailure.Builder<A>addErrors(JPropertyError... elements) Adds elements toerrorslist.final JPropertyFailure.Builder<A>addWarnings(JPropertyWarning element) Adds one element towarningslist.final JPropertyFailure.Builder<A>addWarnings(JPropertyWarning... elements) Adds elements towarningslist.build()Builds a newJPropertyFailure.final JPropertyFailure.Builder<A>from(JPropertyParseMonadType.JPropertyFailureType<A> instance) Fill a builder with attribute values from the providedJPropertyFailureTypeinstance.final JPropertyFailure.Builder<A>setErrors(Iterable<? extends JPropertyError> elements) Sets or replaces all elements forerrorslist.final JPropertyFailure.Builder<A>setException(Exception exception) Initializes the value for theexceptionattribute.final JPropertyFailure.Builder<A>setWarnings(Iterable<? extends JPropertyWarning> elements) Sets or replaces all elements forwarningslist.
-
Method Details
-
from
public final JPropertyFailure.Builder<A> from(JPropertyParseMonadType.JPropertyFailureType<A> instance) Fill a builder with attribute values from the providedJPropertyFailureTypeinstance. 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
-
setException
Initializes the value for theexceptionattribute.- Parameters:
exception- The value for exception- 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 JPropertyFailure.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 newJPropertyFailure.- Returns:
- An immutable instance of JPropertyFailure
- Throws:
IllegalStateException- if any required attributes are missing
-