public static enum ReplicationResult.Status extends Enum<ReplicationResult.Status>
| Enum Constant and Description |
|---|
error |
not_replicated |
replicated |
| Modifier and Type | Method and Description |
|---|---|
static ReplicationResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationResult.Status replicated
public static final ReplicationResult.Status not_replicated
public static final ReplicationResult.Status error
public static ReplicationResult.Status[] values()
for (ReplicationResult.Status c : ReplicationResult.Status.values()) System.out.println(c);
public static ReplicationResult.Status 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 © 2013–2020 Adobe. All rights reserved.