public enum ReplicationPeriodicity extends Enum<ReplicationPeriodicity>
Enum Constant and Description |
---|
DAY
Means that the Snapshot copy occurs daily at the frequency set in the
multiplier.
|
EVERY
Means that the Snapshot copy occurs after the number of Job Runs equals the
number specified in the multiplier.
|
HOUR
Means that the Snapshot copy occurs hourly at the frequency set in the
multiplier, for example if multiplier is 2, the copy occurs every 2 hours.
|
MONTH
Means that the Snapshot copy occurs monthly at the frequency set in the
multiplier.
|
WEEK
Means that the Snapshot copy occurs weekly at the frequency set in the
multiplier.
|
YEAR
Means that the Snapshot copy occurs yearly at the frequency set in the
multiplier.
|
Modifier and Type | Method and Description |
---|---|
static ReplicationPeriodicity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationPeriodicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationPeriodicity EVERY
public static final ReplicationPeriodicity HOUR
public static final ReplicationPeriodicity DAY
public static final ReplicationPeriodicity WEEK
public static final ReplicationPeriodicity MONTH
public static final ReplicationPeriodicity YEAR
public static ReplicationPeriodicity[] values()
for (ReplicationPeriodicity c : ReplicationPeriodicity.values()) System.out.println(c);
public static ReplicationPeriodicity 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 © 2023 iland Internet Solutions, Corp. All rights reserved.