public enum SnapshotsSource extends java.lang.Enum<SnapshotsSource>
| Enum Constant and Description | 
|---|
CHANGE_SET
All sessions can push changesets. 
 | 
REFRESH
Used when snapshots can be created by the auto-refresh mechanism of the PGX engine. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static SnapshotsSource | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SnapshotsSource[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
public static final SnapshotsSource CHANGE_SET
public static final SnapshotsSource REFRESH
public static SnapshotsSource 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 static SnapshotsSource[] values()
for (SnapshotsSource c : SnapshotsSource.values())
    System.out.println(c);
Copyright © 2010, 2020 Oracle and/or its affiliates. All Rights Reserved.