Package com.io7m.jproperties.monad
Class JPropertySuccess.Builder<A>
java.lang.Object
com.io7m.jproperties.monad.JPropertySuccess.Builder<A>
- Enclosing class:
- JPropertySuccess<A>
public static final class JPropertySuccess.Builder<A>
extends java.lang.Object
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 Type Method Description JPropertySuccess.Builder<A>addAllErrors(java.lang.Iterable<? extends JPropertyError> elements)Adds elements toerrorslist.JPropertySuccess.Builder<A>addAllWarnings(java.lang.Iterable<? extends JPropertyWarning> elements)Adds elements towarningslist.JPropertySuccess.Builder<A>addErrors(JPropertyError element)Adds one element toerrorslist.JPropertySuccess.Builder<A>addErrors(JPropertyError... elements)Adds elements toerrorslist.JPropertySuccess.Builder<A>addWarnings(JPropertyWarning element)Adds one element towarningslist.JPropertySuccess.Builder<A>addWarnings(JPropertyWarning... elements)Adds elements towarningslist.JPropertySuccess<A>build()Builds a newJPropertySuccess.JPropertySuccess.Builder<A>from(JPropertyParseMonadType.JPropertySuccessType<A> instance)Fill a builder with attribute values from the providedJPropertySuccessTypeinstance.JPropertySuccess.Builder<A>setErrors(java.lang.Iterable<? extends JPropertyError> elements)Sets or replaces all elements forerrorslist.JPropertySuccess.Builder<A>setResult(A result)Initializes the value for theresultattribute.JPropertySuccess.Builder<A>setWarnings(java.lang.Iterable<? extends JPropertyWarning> elements)Sets or replaces all elements forwarningslist.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
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
-
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
public final JPropertySuccess.Builder<A> setWarnings(java.lang.Iterable<? extends JPropertyWarning> elements)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(java.lang.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
public final JPropertySuccess.Builder<A> setErrors(java.lang.Iterable<? extends JPropertyError> elements)Sets or replaces all elements forerrorslist.- Parameters:
elements- An iterable of errors elements- Returns:
thisbuilder for use in a chained invocation
-
addAllErrors
public final JPropertySuccess.Builder<A> addAllErrors(java.lang.Iterable<? extends JPropertyError> elements)Adds elements toerrorslist.- Parameters:
elements- An iterable of errors elements- 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
-
build
Builds a newJPropertySuccess.- Returns:
- An immutable instance of JPropertySuccess
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-