Enum Activities.ActivitiesType
- java.lang.Object
-
- java.lang.Enum<Activities.ActivitiesType>
-
- com.cdancy.bitbucket.rest.domain.activities.Activities.ActivitiesType
-
- All Implemented Interfaces:
Serializable,Comparable<Activities.ActivitiesType>
- Enclosing class:
- Activities
public static enum Activities.ActivitiesType extends Enum<Activities.ActivitiesType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Activities.ActivitiesTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Activities.ActivitiesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DECLINED
public static final Activities.ActivitiesType DECLINED
-
RESCOPED
public static final Activities.ActivitiesType RESCOPED
-
APPROVED
public static final Activities.ActivitiesType APPROVED
-
REVIEWED
public static final Activities.ActivitiesType REVIEWED
-
COMMENTED
public static final Activities.ActivitiesType COMMENTED
-
OPENED
public static final Activities.ActivitiesType OPENED
-
UPDATED
public static final Activities.ActivitiesType UPDATED
-
UNAPPROVED
public static final Activities.ActivitiesType UNAPPROVED
-
REOPENED
public static final Activities.ActivitiesType REOPENED
-
MERGED
public static final Activities.ActivitiesType MERGED
-
-
Method Detail
-
values
public static Activities.ActivitiesType[] 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 (Activities.ActivitiesType c : Activities.ActivitiesType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Activities.ActivitiesType 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
-
-