Enum Cloud.BugFilingStatus

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BUG_PENDING
      Sent a URL to a browser to file a bug, no information yet
      FILE_AGAIN
      URL was sent to browser, but request has expired
      FILE_BUG
      No bug yet filed
      NA  
      VIEW_BUG
      synchronized bug instance with bug database
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean bugIsFiled()  
      boolean linkEnabled()  
      java.lang.String toString()  
      static Cloud.BugFilingStatus valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Cloud.BugFilingStatus[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static Cloud.BugFilingStatus[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Cloud.BugFilingStatus c : Cloud.BugFilingStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Cloud.BugFilingStatus valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • bugIsFiled

        public boolean bugIsFiled()
      • linkEnabled

        public boolean linkEnabled()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Cloud.BugFilingStatus>