Package com.io7m.smfj.processing.api
Class SMFProcessingError.Builder
- java.lang.Object
-
- com.io7m.smfj.processing.api.SMFProcessingError.Builder
-
- Enclosing class:
- SMFProcessingError
public static final class SMFProcessingError.Builder extends java.lang.ObjectBuilds instances of typeSMFProcessingError. Initialize attributes and then invoke thebuild()method to create an immutable instance.Builderis not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SMFProcessingErrorbuild()Builds a newSMFProcessingError.SMFProcessingError.Builderfrom(SMFErrorType instance)Fill a builder with attribute values from the providedcom.io7m.smfj.core.SMFErrorTypeinstance.SMFProcessingError.Builderfrom(SMFProcessingErrorType instance)Fill a builder with attribute values from the providedcom.io7m.smfj.processing.api.SMFProcessingErrorTypeinstance.SMFProcessingError.BuildersetException(java.lang.Exception exception)Initializes the optional valueexceptionto exception.SMFProcessingError.BuildersetException(java.util.Optional<? extends java.lang.Exception> exception)Initializes the optional valueexceptionto exception.SMFProcessingError.BuildersetMessage(java.lang.String message)Initializes the value for themessageattribute.
-
-
-
Method Detail
-
from
public final SMFProcessingError.Builder from(SMFErrorType instance)
Fill a builder with attribute values from the providedcom.io7m.smfj.core.SMFErrorTypeinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
public final SMFProcessingError.Builder from(SMFProcessingErrorType instance)
Fill a builder with attribute values from the providedcom.io7m.smfj.processing.api.SMFProcessingErrorTypeinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setMessage
public final SMFProcessingError.Builder setMessage(java.lang.String message)
Initializes the value for themessageattribute.- Parameters:
message- The value for message- Returns:
thisbuilder for use in a chained invocation
-
setException
public final SMFProcessingError.Builder setException(java.lang.Exception exception)
Initializes the optional valueexceptionto exception.- Parameters:
exception- The value for exception- Returns:
thisbuilder for chained invocation
-
setException
public final SMFProcessingError.Builder setException(java.util.Optional<? extends java.lang.Exception> exception)
Initializes the optional valueexceptionto exception.- Parameters:
exception- The value for exception- Returns:
thisbuilder for use in a chained invocation
-
build
public SMFProcessingError build()
Builds a newSMFProcessingError.- Returns:
- An immutable instance of SMFProcessingError
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-
-