Enum DefinedLabelItem.LabelContent
- java.lang.Object
-
- java.lang.Enum<DefinedLabelItem.LabelContent>
-
- org.jboss.set.pull.processor.data.DefinedLabelItem.LabelContent
-
- All Implemented Interfaces:
Serializable,Comparable<DefinedLabelItem.LabelContent>
- Enclosing class:
- DefinedLabelItem
public static enum DefinedLabelItem.LabelContent extends Enum<DefinedLabelItem.LabelContent>
Static content that can be used as label- Author:
- baranowb
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Corrupted_upgrade_metaHas_All_AcksMissing_issueMissing_upstream_issueMissing_upstream_PRNeeds_devel_ackNeeds_pm_ackNeeds_qa_ackUpstream_mergedUpstream_PR_Branch_MismatchUpstream_PR_Repository_Mismatch
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static DefinedLabelItem.LabelContentvalueOf(String name)Returns the enum constant of this type with the specified name.static DefinedLabelItem.LabelContent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Needs_devel_ack
public static final DefinedLabelItem.LabelContent Needs_devel_ack
-
Needs_pm_ack
public static final DefinedLabelItem.LabelContent Needs_pm_ack
-
Needs_qa_ack
public static final DefinedLabelItem.LabelContent Needs_qa_ack
-
Has_All_Acks
public static final DefinedLabelItem.LabelContent Has_All_Acks
-
Upstream_merged
public static final DefinedLabelItem.LabelContent Upstream_merged
-
Missing_upstream_issue
public static final DefinedLabelItem.LabelContent Missing_upstream_issue
-
Missing_issue
public static final DefinedLabelItem.LabelContent Missing_issue
-
Missing_upstream_PR
public static final DefinedLabelItem.LabelContent Missing_upstream_PR
-
Corrupted_upgrade_meta
public static final DefinedLabelItem.LabelContent Corrupted_upgrade_meta
-
Upstream_PR_Repository_Mismatch
public static final DefinedLabelItem.LabelContent Upstream_PR_Repository_Mismatch
-
Upstream_PR_Branch_Mismatch
public static final DefinedLabelItem.LabelContent Upstream_PR_Branch_Mismatch
-
-
Method Detail
-
values
public static DefinedLabelItem.LabelContent[] 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 (DefinedLabelItem.LabelContent c : DefinedLabelItem.LabelContent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefinedLabelItem.LabelContent valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<DefinedLabelItem.LabelContent>
-
-