Package com.kaltura.client.enums
Enum EventNotificationEventType
- java.lang.Object
-
- java.lang.Enum<EventNotificationEventType>
-
- com.kaltura.client.enums.EventNotificationEventType
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<EventNotificationEventType>
public enum EventNotificationEventType extends Enum<EventNotificationEventType> implements EnumAsString
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventNotificationEventTypeget(String value)StringgetValue()voidsetValue(String value)static EventNotificationEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EventNotificationEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTEGRATION_JOB_CLOSED
public static final EventNotificationEventType INTEGRATION_JOB_CLOSED
-
BATCH_JOB_STATUS
public static final EventNotificationEventType BATCH_JOB_STATUS
-
OBJECT_ADDED
public static final EventNotificationEventType OBJECT_ADDED
-
OBJECT_CHANGED
public static final EventNotificationEventType OBJECT_CHANGED
-
OBJECT_COPIED
public static final EventNotificationEventType OBJECT_COPIED
-
OBJECT_CREATED
public static final EventNotificationEventType OBJECT_CREATED
-
OBJECT_DATA_CHANGED
public static final EventNotificationEventType OBJECT_DATA_CHANGED
-
OBJECT_DELETED
public static final EventNotificationEventType OBJECT_DELETED
-
OBJECT_ERASED
public static final EventNotificationEventType OBJECT_ERASED
-
OBJECT_READY_FOR_REPLACMENT
public static final EventNotificationEventType OBJECT_READY_FOR_REPLACMENT
-
OBJECT_SAVED
public static final EventNotificationEventType OBJECT_SAVED
-
OBJECT_UPDATED
public static final EventNotificationEventType OBJECT_UPDATED
-
OBJECT_REPLACED
public static final EventNotificationEventType OBJECT_REPLACED
-
OBJECT_READY_FOR_INDEX
public static final EventNotificationEventType OBJECT_READY_FOR_INDEX
-
-
Method Detail
-
values
public static EventNotificationEventType[] 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 (EventNotificationEventType c : EventNotificationEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventNotificationEventType 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
-
getValue
public String getValue()
- Specified by:
getValuein interfaceEnumAsString
-
setValue
public void setValue(String value)
-
get
public static EventNotificationEventType get(String value)
-
-