Class SMFParseWarning

    • Method Detail

      • lexical

        public com.io7m.jlexing.core.LexicalPosition<java.net.URI> lexical()
        Specified by:
        lexical in interface SMFParseWarningType
        Returns:
        Lexical information
      • withLexical

        public final SMFParseWarning withLexical​(com.io7m.jlexing.core.LexicalPosition<java.net.URI> value)
        Copy the current immutable object by setting a value for the lexical attribute. A shallow reference equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for lexical
        Returns:
        A modified copy of the this object
      • withMessage

        public final SMFParseWarning withMessage​(java.lang.String value)
        Copy the current immutable object by setting a value for the message attribute. An equals check used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for message
        Returns:
        A modified copy of the this object
      • withException

        public final SMFParseWarning withException​(java.lang.Exception value)
        Copy the current immutable object by setting a present value for the optional exception attribute.
        Parameters:
        value - The value for exception
        Returns:
        A modified copy of this object
      • withException

        public final SMFParseWarning withException​(java.util.Optional<? extends java.lang.Exception> optional)
        Copy the current immutable object by setting an optional value for the exception attribute. A shallow reference equality check is used on unboxed optional value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for exception
        Returns:
        A modified copy of this object
      • equals

        public boolean equals​(java.lang.Object another)
        This instance is equal to all instances of SMFParseWarning that have equal attribute values.
        Overrides:
        equals in class java.lang.Object
        Returns:
        true if this is equal to another instance
      • hashCode

        public int hashCode()
        Computes a hash code from attributes: lexical, message, exception.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hashCode value
      • toString

        public java.lang.String toString()
        Prints the immutable value SMFParseWarning with attribute values.
        Overrides:
        toString in class java.lang.Object
        Returns:
        A string representation of the value
      • fullMessage

        public java.lang.String fullMessage()

        Returns a lazily initialized value of the fullMessage attribute. Initialized once and only once and stored for subsequent access with proper synchronization. In case of any exception or error thrown by the lazy value initializer, the result will not be memoised (i.e. remembered) and on next call computation will be attempted again.

        Specified by:
        fullMessage in interface SMFParseWarningType
        Specified by:
        fullMessage in interface SMFWarningType
        Returns:
        A lazily initialized value of the fullMessage attribute
      • of

        public static SMFParseWarning of​(com.io7m.jlexing.core.LexicalPosition<java.net.URI> lexical,
                                         java.lang.String message,
                                         java.util.Optional<? extends java.lang.Exception> exception)
        Construct a new immutable SMFParseWarning instance.
        Parameters:
        lexical - The value for the lexical attribute
        message - The value for the message attribute
        exception - The value for the exception attribute
        Returns:
        An immutable SMFParseWarning instance
      • copyOf

        public static SMFParseWarning copyOf​(SMFParseWarningType instance)
        Creates an immutable copy of a SMFParseWarningType value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
        Parameters:
        instance - The instance to copy
        Returns:
        A copied immutable SMFParseWarning instance
      • builder

        public static SMFParseWarning.Builder builder()
        Creates a builder for SMFParseWarning.
         SMFParseWarning.builder()
            .setLexical(com.io7m.jlexing.core.LexicalPosition&lt;java.net.URI&gt;) // required lexical
            .setMessage(String) // required message
            .setException(Exception) // optional exception
            .build();
         
        Returns:
        A new SMFParseWarning builder