public static enum EventBrowserDef.TimeScope extends java.lang.Enum<EventBrowserDef.TimeScope>
Enum Constant and Description |
---|
ALL
The EventBrowser iterates through events for all of the entries stored in the
Space at the time the EventBrowser was created and
continues to iterate as changes occur in the Space. |
NEW
The EventBrowser skips iterating through events for those entries stored in the
Space at the time the EventBrowser was created and
only iterates through events which occur for new entries in the Space. |
NEW_EVENTS
The EventBrowser skips iterating through events for those entries stored in the
Space at the time the EventBrowser was created and
only iterates through events which occur for new changes in the Space. |
SNAPSHOT
The EventBrowser only iterates through events for those entries stored in the
Space at the time the EventBrowser was created. |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static EventBrowserDef.TimeScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventBrowserDef.TimeScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventBrowserDef.TimeScope ALL
Space
at the time the EventBrowser was created and
continues to iterate as changes occur in the Space.public static final EventBrowserDef.TimeScope SNAPSHOT
Space
at the time the EventBrowser was created.public static final EventBrowserDef.TimeScope NEW
Space
at the time the EventBrowser was created and
only iterates through events which occur for new entries in the Space.public static final EventBrowserDef.TimeScope NEW_EVENTS
Space
at the time the EventBrowser was created and
only iterates through events which occur for new changes in the Space. Unlike
NEW
, NEW_EVENTS
includes new events which occur for
entries already contained in the Space at the time the EventBrowser was created.public static EventBrowserDef.TimeScope[] values()
for (EventBrowserDef.TimeScope c : EventBrowserDef.TimeScope.values()) System.out.println(c);
public static EventBrowserDef.TimeScope 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) 2014 Cloud Software Group, Inc. All rights reserved.