public static enum ChangeTracker.ChangeTrackerMode extends java.lang.Enum<ChangeTracker.ChangeTrackerMode>
| Enum Constant and Description |
|---|
Continuous |
LongPoll |
OneShot |
| Modifier and Type | Method and Description |
|---|---|
static ChangeTracker.ChangeTrackerMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeTracker.ChangeTrackerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeTracker.ChangeTrackerMode OneShot
public static final ChangeTracker.ChangeTrackerMode LongPoll
public static final ChangeTracker.ChangeTrackerMode Continuous
public static ChangeTracker.ChangeTrackerMode[] values()
for (ChangeTracker.ChangeTrackerMode c : ChangeTracker.ChangeTrackerMode.values()) System.out.println(c);
public static ChangeTracker.ChangeTrackerMode 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 null