public enum ReplicationType extends Enum<ReplicationType>
| Modifier and Type | Method and Description |
|---|---|
static ReplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationType LOGICAL
public static final ReplicationType PHYSICAL
public static ReplicationType[] values()
for (ReplicationType c : ReplicationType.values()) System.out.println(c);
public static ReplicationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 1997-2020 PostgreSQL Global Development Group. All Rights Reserved.