Class Status


  • public class Status
    extends Object
    MSRP Status header.

    Instances are immutable.

    • Constructor Detail

      • Status

        public Status​(int code,
                      String comment)
        Constructor.
        Parameters:
        code - status code
        comment - comment, or null
      • Status

        public Status​(int namespace,
                      int code)
        Constructor.
        Parameters:
        namespace - status code namespace
        code - status code
      • Status

        public Status​(int namespace,
                      int code,
                      String comment)
        Constructor.
        Parameters:
        namespace - status code namespace
        code - status code
        comment - comment, or null
    • Method Detail

      • getNamespace

        public int getNamespace()
        Get the status code namespace.
        Returns:
        namespace ID
      • getCode

        public int getCode()
        Get the status code.
        Returns:
        status code
      • getComment

        public String getComment()
        Get the comment.
        Returns:
        comment, or null if there is no comment
      • fromString

        public static Status fromString​(String string)
        Create an instance by parsing a String.
        Parameters:
        string - static expressed as a string
        Returns:
        parsed Status
        Throws:
        IllegalArgumentException - if string is null or invalid
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object