public static enum SpaceEvent.EventType extends java.lang.Enum<SpaceEvent.EventType>
Enum Constant and Description |
---|
EVICT
Evict event type is returned when a tuple is evicted from the Space.
|
EXPIRE
Expire event type is returned when a tuple 'expires' from the Space.
|
PUT
Put event type is returned when a Member puts/updates tuple
into a Space.
|
SEED
Seed event type is returned when a tuple 'is seeded' by the Space.
|
TAKE
Take event type is returned when a Member 'takes' a tuple from the Space.
|
UNSEED
Unseed event type is returned when a tuple 'is unseeded' from the Space.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static SpaceEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpaceEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpaceEvent.EventType PUT
PutEvent
public static final SpaceEvent.EventType TAKE
TakeEvent
public static final SpaceEvent.EventType EXPIRE
ExpireEvent
public static final SpaceEvent.EventType EVICT
EvictEvent
public static final SpaceEvent.EventType SEED
SeedEvent
public static final SpaceEvent.EventType UNSEED
UnseedEvent
public static SpaceEvent.EventType[] values()
for (SpaceEvent.EventType c : SpaceEvent.EventType.values()) System.out.println(c);
public static SpaceEvent.EventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
Copyright (c) 2013 TIBCO Software Inc. All rights reserved.