Package com.oracle.bmc.cims.model
Enum UpdateContactItemDetails.ActivityType
- java.lang.Object
-
- java.lang.Enum<UpdateContactItemDetails.ActivityType>
-
- com.oracle.bmc.cims.model.UpdateContactItemDetails.ActivityType
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<UpdateContactItemDetails.ActivityType>
- Enclosing class:
- UpdateContactItemDetails
public static enum UpdateContactItemDetails.ActivityType extends Enum<UpdateContactItemDetails.ActivityType> implements BmcEnum
The type of activity occurring.NOTES is the activity associated to attachments. PROBLEM_DESCRIPTION is the activity associated to customer problem description. UPDATE is the activity associated to adding comments. CLOSE is the activity associated to closing the support request. REOPEN is the activity associated to reopening the support request. ADD_CONTACT is the activity associated to adding additional contact to the support request.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AddContactCloseNotesProblemDescriptionReopenUpdate
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateContactItemDetails.ActivityTypecreate(String key)StringgetValue()static UpdateContactItemDetails.ActivityTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UpdateContactItemDetails.ActivityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Notes
public static final UpdateContactItemDetails.ActivityType Notes
-
ProblemDescription
public static final UpdateContactItemDetails.ActivityType ProblemDescription
-
Update
public static final UpdateContactItemDetails.ActivityType Update
-
Close
public static final UpdateContactItemDetails.ActivityType Close
-
Reopen
public static final UpdateContactItemDetails.ActivityType Reopen
-
AddContact
public static final UpdateContactItemDetails.ActivityType AddContact
-
-
Method Detail
-
values
public static UpdateContactItemDetails.ActivityType[] 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 (UpdateContactItemDetails.ActivityType c : UpdateContactItemDetails.ActivityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateContactItemDetails.ActivityType 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
-
create
public static UpdateContactItemDetails.ActivityType create(String key)
-
-