Class CParseError.Builder

  • Enclosing class:
    CParseError

    public static final class CParseError.Builder
    extends Object
    Builds instances of type CParseError. 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 CParseError.Builder from​(CParseErrorType instance)
        Fill a builder with attribute values from the provided CParseErrorType instance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.
        Parameters:
        instance - The instance from which to copy values
        Returns:
        this builder for use in a chained invocation
      • setLexical

        public final CParseError.Builder setLexical​(com.io7m.jlexing.core.LexicalPosition<URI> lexical)
        Initializes the value for the lexical attribute.
        Parameters:
        lexical - The value for lexical
        Returns:
        this builder for use in a chained invocation
      • setMessage

        public final CParseError.Builder setMessage​(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 CParseError.Builder setException​(Exception exception)
        Initializes the optional value exception to exception.
        Parameters:
        exception - The value for exception
        Returns:
        this builder for chained invocation
      • setException

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