Package com.hazelcast.wan
Enum Class WanEventType
- All Implemented Interfaces:
Serializable
,Comparable<WanEventType>
,Constable
The type of the WAN event, signifies the type of the mutation that occurred
that caused the WAN event.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAdd/update event (can be caused by either adding or creating some data)Remove event (caused by removing data)WAN sync event (carrying a piece of data for synchronization between clusters) -
Method Summary
Modifier and TypeMethodDescriptionstatic WanEventType
Returns the enum constant of this class with the specified name.static WanEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SYNC
WAN sync event (carrying a piece of data for synchronization between clusters) -
ADD_OR_UPDATE
Add/update event (can be caused by either adding or creating some data) -
REMOVE
Remove event (caused by removing data)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-