Package org.gitlab4j.api.models
Enum IssueFilter.IssueField
- java.lang.Object
-
- java.lang.Enum<IssueFilter.IssueField>
-
- org.gitlab4j.api.models.IssueFilter.IssueField
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IssueFilter.IssueField>
- Enclosing class:
- IssueFilter
public static enum IssueFilter.IssueField extends java.lang.Enum<IssueFilter.IssueField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNEE_IDASSIGNEE_USERNAMEAUTHOR_IDAUTHOR_USERNAMEIIDSITERATION_IDITERATION_TITLELABELSMILESTONEMILESTONE_ID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IssueFilter.IssueFieldforValue(java.lang.String value)java.lang.StringtoString()java.lang.StringtoValue()static IssueFilter.IssueFieldvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IssueFilter.IssueField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSIGNEE_ID
public static final IssueFilter.IssueField ASSIGNEE_ID
-
ASSIGNEE_USERNAME
public static final IssueFilter.IssueField ASSIGNEE_USERNAME
-
AUTHOR_ID
public static final IssueFilter.IssueField AUTHOR_ID
-
AUTHOR_USERNAME
public static final IssueFilter.IssueField AUTHOR_USERNAME
-
IIDS
public static final IssueFilter.IssueField IIDS
-
ITERATION_ID
public static final IssueFilter.IssueField ITERATION_ID
-
ITERATION_TITLE
public static final IssueFilter.IssueField ITERATION_TITLE
-
LABELS
public static final IssueFilter.IssueField LABELS
-
MILESTONE
public static final IssueFilter.IssueField MILESTONE
-
MILESTONE_ID
public static final IssueFilter.IssueField MILESTONE_ID
-
-
Method Detail
-
values
public static IssueFilter.IssueField[] 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 (IssueFilter.IssueField c : IssueFilter.IssueField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IssueFilter.IssueField 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
-
forValue
public static IssueFilter.IssueField forValue(java.lang.String value)
-
toValue
public java.lang.String toValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<IssueFilter.IssueField>
-
-