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