public enum ReplicationPeriodicity extends Enum<ReplicationPeriodicity>
| Enum Constant and Description | 
|---|
| DAYMeans that the Snapshot copy occurs daily at the frequency set in the
 multiplier. | 
| EVERYMeans that the Snapshot copy occurs after the number of Job Runs equals the
 number specified in the multiplier. | 
| HOURMeans 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. | 
| MONTHMeans that the Snapshot copy occurs monthly at the frequency set in the
 multiplier. | 
| WEEKMeans that the Snapshot copy occurs weekly at the frequency set in the
 multiplier. | 
| YEARMeans 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 © 2020 iland Internet Solutions, Corp. All rights reserved.