Package org.alfresco.rest.core.v0
Enum RMEvents
- java.lang.Object
-
- java.lang.Enum<RMEvents>
-
- org.alfresco.rest.core.v0.RMEvents
-
- All Implemented Interfaces:
Serializable,Comparable<RMEvents>
public enum RMEvents extends Enum<RMEvents>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABOLISHEDALL_ALLOWANCES_GRANTED_ARE_TERMINATEDCASE_CLOSEDDECLASSIFICATION_REVIEWNO_LONGER_NEEDEDOBSOLETESTUDY_COMPLETE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEventName()static RMEventsvalueOf(String name)Returns the enum constant of this type with the specified name.static RMEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABOLISHED
public static final RMEvents ABOLISHED
-
ALL_ALLOWANCES_GRANTED_ARE_TERMINATED
public static final RMEvents ALL_ALLOWANCES_GRANTED_ARE_TERMINATED
-
CASE_CLOSED
public static final RMEvents CASE_CLOSED
-
DECLASSIFICATION_REVIEW
public static final RMEvents DECLASSIFICATION_REVIEW
-
OBSOLETE
public static final RMEvents OBSOLETE
-
NO_LONGER_NEEDED
public static final RMEvents NO_LONGER_NEEDED
-
STUDY_COMPLETE
public static final RMEvents STUDY_COMPLETE
-
-
Method Detail
-
values
public static RMEvents[] 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 (RMEvents c : RMEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RMEvents 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
-
getEventName
public String getEventName()
-
-