Package edu.umd.cs.findbugs.cloud
Enum Cloud.BugFilingStatus
- java.lang.Object
-
- java.lang.Enum<Cloud.BugFilingStatus>
-
- edu.umd.cs.findbugs.cloud.Cloud.BugFilingStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Cloud.BugFilingStatus>
- Enclosing interface:
- Cloud
public static enum Cloud.BugFilingStatus extends java.lang.Enum<Cloud.BugFilingStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUG_PENDING
FILE_AGAIN
FILE_BUG
NA
VIEW_BUG
-
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.
-
-
-
Enum Constant Detail
-
FILE_BUG
public static final Cloud.BugFilingStatus FILE_BUG
-
FILE_AGAIN
public static final Cloud.BugFilingStatus FILE_AGAIN
-
BUG_PENDING
public static final Cloud.BugFilingStatus BUG_PENDING
-
VIEW_BUG
public static final Cloud.BugFilingStatus VIEW_BUG
-
NA
public static final Cloud.BugFilingStatus NA
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
bugIsFiled
public boolean bugIsFiled()
-
linkEnabled
public boolean linkEnabled()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Cloud.BugFilingStatus>
-
-