Class SMFProcessingError.Builder

  • Enclosing class:
    SMFProcessingError

    public static final class SMFProcessingError.Builder
    extends java.lang.Object
    Builds instances of type SMFProcessingError. 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 Detail

      • from

        public final SMFProcessingError.Builder from​(SMFErrorType instance)
        Fill a builder with attribute values from the provided com.io7m.smfj.core.SMFErrorType instance.
        Parameters:
        instance - The instance from which to copy values
        Returns:
        this builder for use in a chained invocation
      • from

        public final SMFProcessingError.Builder from​(SMFProcessingErrorType instance)
        Fill a builder with attribute values from the provided com.io7m.smfj.processing.api.SMFProcessingErrorType instance.
        Parameters:
        instance - The instance from which to copy values
        Returns:
        this builder for use in a chained invocation
      • setMessage

        public final SMFProcessingError.Builder setMessage​(java.lang.String message)
        Initializes the value for the message attribute.
        Parameters:
        message - The value for message
        Returns:
        this builder for use in a chained invocation
      • setException

        public final SMFProcessingError.Builder setException​(java.lang.Exception exception)
        Initializes the optional value exception to exception.
        Parameters:
        exception - The value for exception
        Returns:
        this builder for chained invocation
      • setException

        public final SMFProcessingError.Builder setException​(java.util.Optional<? extends java.lang.Exception> exception)
        Initializes the optional value exception to exception.
        Parameters:
        exception - The value for exception
        Returns:
        this builder for use in a chained invocation
      • build

        public SMFProcessingError build()
        Builds a new SMFProcessingError.
        Returns:
        An immutable instance of SMFProcessingError
        Throws:
        java.lang.IllegalStateException - if any required attributes are missing