Enum EventCoBrowseType
- java.lang.Object
-
- java.lang.Enum<EventCoBrowseType>
-
- cloud.genesys.webmessaging.sdk.model.EventCoBrowseType
-
- All Implemented Interfaces:
Serializable,Comparable<EventCoBrowseType>
public enum EventCoBrowseType extends Enum<EventCoBrowseType>
Describes the type of CoBrowse event.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OFFERINGOFFERINGACCEPTEDOFFERINGEXPIREDOFFERINGREJECTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventCoBrowseTypefromString(String key)StringtoString()static EventCoBrowseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EventCoBrowseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFFERING
public static final EventCoBrowseType OFFERING
-
OFFERINGACCEPTED
public static final EventCoBrowseType OFFERINGACCEPTED
-
OFFERINGEXPIRED
public static final EventCoBrowseType OFFERINGEXPIRED
-
OFFERINGREJECTED
public static final EventCoBrowseType OFFERINGREJECTED
-
-
Method Detail
-
values
public static EventCoBrowseType[] 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 (EventCoBrowseType c : EventCoBrowseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventCoBrowseType 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
-
fromString
public static EventCoBrowseType fromString(String key)
-
toString
public String toString()
- Overrides:
toStringin classEnum<EventCoBrowseType>
-
-