Package com.jcabi.github
Enum Issues.Qualifier
- All Implemented Interfaces:
StringEnum,Serializable,Comparable<Issues.Qualifier>,Constable
- Enclosing interface:
- Issues
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFinds issues that are assigned to a certain user.Finds issues created by a certain user.Filters issues based on their labels, as a comma-separated list of label names.Finds issues that mention a certain user.Filter issues based on which milestone they are assigned to.Filters issues based on date last updated (as an ISO 8601 timestamp).Filter issues based on whether they're open or closed. -
Method Summary
Modifier and TypeMethodDescriptionThe string that this enum value represents.static Issues.QualifierReturns the enum constant of this type with the specified name.static Issues.Qualifier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MILESTONE
Filter issues based on which milestone they are assigned to. "none" means no assigned milestone. "*" means any milestone. -
STATE
Filter issues based on whether they're open or closed. -
ASSIGNEE
Finds issues that are assigned to a certain user. "none" means no assigned user. "*" means assigned to any user. -
CREATOR
Finds issues created by a certain user. -
MENTIONED
Finds issues that mention a certain user. -
LABELS
Filters issues based on their labels, as a comma-separated list of label names. An issue must have all of the labels in the list in order to appear in the search results. -
SINCE
Filters issues based on date last updated (as an ISO 8601 timestamp).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
identifier
Description copied from interface:StringEnumThe string that this enum value represents.- Specified by:
identifierin interfaceStringEnum- Returns:
- String
-