All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.ScheduledInstanceRecurrence Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.9.19
Show newest version
/*
 * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights
 * Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

package com.amazonaws.services.ec2.model;

import java.io.Serializable;

/**
 * 

* Describes the recurring schedule for a Scheduled Instance. *

*/ public class ScheduledInstanceRecurrence implements Serializable, Cloneable { /** *

* The frequency (Daily, Weekly, or * Monthly). *

*/ private String frequency; /** *

* The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 months. *

*/ private Integer interval; /** *

* The days. For a monthly schedule, this is one or more days of the month * (1-31). For a weekly schedule, this is one or more days of the week (1-7, * where 1 is Sunday). *

*/ private com.amazonaws.internal.SdkInternalList occurrenceDaySet; /** *

* Indicates whether the occurrence is relative to the end of the specified * week or month. *

*/ private Boolean occurrenceRelativeToEnd; /** *

* The unit for occurrenceDaySet (DayOfWeek or * DayOfMonth). *

*/ private String occurrenceUnit; /** *

* The frequency (Daily, Weekly, or * Monthly). *

* * @param frequency * The frequency (Daily, Weekly, or * Monthly). */ public void setFrequency(String frequency) { this.frequency = frequency; } /** *

* The frequency (Daily, Weekly, or * Monthly). *

* * @return The frequency (Daily, Weekly, or * Monthly). */ public String getFrequency() { return this.frequency; } /** *

* The frequency (Daily, Weekly, or * Monthly). *

* * @param frequency * The frequency (Daily, Weekly, or * Monthly). * @return Returns a reference to this object so that method calls can be * chained together. */ public ScheduledInstanceRecurrence withFrequency(String frequency) { setFrequency(frequency); return this; } /** *

* The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 months. *

* * @param interval * The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 * months. */ public void setInterval(Integer interval) { this.interval = interval; } /** *

* The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 months. *

* * @return The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 * months. */ public Integer getInterval() { return this.interval; } /** *

* The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 months. *

* * @param interval * The interval quantity. The interval unit depends on the value of * frequency. For example, every 2 weeks or every 2 * months. * @return Returns a reference to this object so that method calls can be * chained together. */ public ScheduledInstanceRecurrence withInterval(Integer interval) { setInterval(interval); return this; } /** *

* The days. For a monthly schedule, this is one or more days of the month * (1-31). For a weekly schedule, this is one or more days of the week (1-7, * where 1 is Sunday). *

* * @return The days. For a monthly schedule, this is one or more days of the * month (1-31). For a weekly schedule, this is one or more days of * the week (1-7, where 1 is Sunday). */ public java.util.List getOccurrenceDaySet() { if (occurrenceDaySet == null) { occurrenceDaySet = new com.amazonaws.internal.SdkInternalList(); } return occurrenceDaySet; } /** *

* The days. For a monthly schedule, this is one or more days of the month * (1-31). For a weekly schedule, this is one or more days of the week (1-7, * where 1 is Sunday). *

* * @param occurrenceDaySet * The days. For a monthly schedule, this is one or more days of the * month (1-31). For a weekly schedule, this is one or more days of * the week (1-7, where 1 is Sunday). */ public void setOccurrenceDaySet( java.util.Collection occurrenceDaySet) { if (occurrenceDaySet == null) { this.occurrenceDaySet = null; return; } this.occurrenceDaySet = new com.amazonaws.internal.SdkInternalList( occurrenceDaySet); } /** *

* The days. For a monthly schedule, this is one or more days of the month * (1-31). For a weekly schedule, this is one or more days of the week (1-7, * where 1 is Sunday). *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setOccurrenceDaySet(java.util.Collection)} or * {@link #withOccurrenceDaySet(java.util.Collection)} if you want to * override the existing values. *

* * @param occurrenceDaySet * The days. For a monthly schedule, this is one or more days of the * month (1-31). For a weekly schedule, this is one or more days of * the week (1-7, where 1 is Sunday). * @return Returns a reference to this object so that method calls can be * chained together. */ public ScheduledInstanceRecurrence withOccurrenceDaySet( Integer... occurrenceDaySet) { if (this.occurrenceDaySet == null) { setOccurrenceDaySet(new com.amazonaws.internal.SdkInternalList( occurrenceDaySet.length)); } for (Integer ele : occurrenceDaySet) { this.occurrenceDaySet.add(ele); } return this; } /** *

* The days. For a monthly schedule, this is one or more days of the month * (1-31). For a weekly schedule, this is one or more days of the week (1-7, * where 1 is Sunday). *

* * @param occurrenceDaySet * The days. For a monthly schedule, this is one or more days of the * month (1-31). For a weekly schedule, this is one or more days of * the week (1-7, where 1 is Sunday). * @return Returns a reference to this object so that method calls can be * chained together. */ public ScheduledInstanceRecurrence withOccurrenceDaySet( java.util.Collection occurrenceDaySet) { setOccurrenceDaySet(occurrenceDaySet); return this; } /** *

* Indicates whether the occurrence is relative to the end of the specified * week or month. *

* * @param occurrenceRelativeToEnd * Indicates whether the occurrence is relative to the end of the * specified week or month. */ public void setOccurrenceRelativeToEnd(Boolean occurrenceRelativeToEnd) { this.occurrenceRelativeToEnd = occurrenceRelativeToEnd; } /** *

* Indicates whether the occurrence is relative to the end of the specified * week or month. *

* * @return Indicates whether the occurrence is relative to the end of the * specified week or month. */ public Boolean getOccurrenceRelativeToEnd() { return this.occurrenceRelativeToEnd; } /** *

* Indicates whether the occurrence is relative to the end of the specified * week or month. *

* * @param occurrenceRelativeToEnd * Indicates whether the occurrence is relative to the end of the * specified week or month. * @return Returns a reference to this object so that method calls can be * chained together. */ public ScheduledInstanceRecurrence withOccurrenceRelativeToEnd( Boolean occurrenceRelativeToEnd) { setOccurrenceRelativeToEnd(occurrenceRelativeToEnd); return this; } /** *

* Indicates whether the occurrence is relative to the end of the specified * week or month. *

* * @return Indicates whether the occurrence is relative to the end of the * specified week or month. */ public Boolean isOccurrenceRelativeToEnd() { return this.occurrenceRelativeToEnd; } /** *

* The unit for occurrenceDaySet (DayOfWeek or * DayOfMonth). *

* * @param occurrenceUnit * The unit for occurrenceDaySet (DayOfWeek * or DayOfMonth). */ public void setOccurrenceUnit(String occurrenceUnit) { this.occurrenceUnit = occurrenceUnit; } /** *

* The unit for occurrenceDaySet (DayOfWeek or * DayOfMonth). *

* * @return The unit for occurrenceDaySet ( * DayOfWeek or DayOfMonth). */ public String getOccurrenceUnit() { return this.occurrenceUnit; } /** *

* The unit for occurrenceDaySet (DayOfWeek or * DayOfMonth). *

* * @param occurrenceUnit * The unit for occurrenceDaySet (DayOfWeek * or DayOfMonth). * @return Returns a reference to this object so that method calls can be * chained together. */ public ScheduledInstanceRecurrence withOccurrenceUnit(String occurrenceUnit) { setOccurrenceUnit(occurrenceUnit); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getFrequency() != null) sb.append("Frequency: " + getFrequency() + ","); if (getInterval() != null) sb.append("Interval: " + getInterval() + ","); if (getOccurrenceDaySet() != null) sb.append("OccurrenceDaySet: " + getOccurrenceDaySet() + ","); if (getOccurrenceRelativeToEnd() != null) sb.append("OccurrenceRelativeToEnd: " + getOccurrenceRelativeToEnd() + ","); if (getOccurrenceUnit() != null) sb.append("OccurrenceUnit: " + getOccurrenceUnit()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ScheduledInstanceRecurrence == false) return false; ScheduledInstanceRecurrence other = (ScheduledInstanceRecurrence) obj; if (other.getFrequency() == null ^ this.getFrequency() == null) return false; if (other.getFrequency() != null && other.getFrequency().equals(this.getFrequency()) == false) return false; if (other.getInterval() == null ^ this.getInterval() == null) return false; if (other.getInterval() != null && other.getInterval().equals(this.getInterval()) == false) return false; if (other.getOccurrenceDaySet() == null ^ this.getOccurrenceDaySet() == null) return false; if (other.getOccurrenceDaySet() != null && other.getOccurrenceDaySet().equals( this.getOccurrenceDaySet()) == false) return false; if (other.getOccurrenceRelativeToEnd() == null ^ this.getOccurrenceRelativeToEnd() == null) return false; if (other.getOccurrenceRelativeToEnd() != null && other.getOccurrenceRelativeToEnd().equals( this.getOccurrenceRelativeToEnd()) == false) return false; if (other.getOccurrenceUnit() == null ^ this.getOccurrenceUnit() == null) return false; if (other.getOccurrenceUnit() != null && other.getOccurrenceUnit().equals(this.getOccurrenceUnit()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFrequency() == null) ? 0 : getFrequency().hashCode()); hashCode = prime * hashCode + ((getInterval() == null) ? 0 : getInterval().hashCode()); hashCode = prime * hashCode + ((getOccurrenceDaySet() == null) ? 0 : getOccurrenceDaySet() .hashCode()); hashCode = prime * hashCode + ((getOccurrenceRelativeToEnd() == null) ? 0 : getOccurrenceRelativeToEnd().hashCode()); hashCode = prime * hashCode + ((getOccurrenceUnit() == null) ? 0 : getOccurrenceUnit() .hashCode()); return hashCode; } @Override public ScheduledInstanceRecurrence clone() { try { return (ScheduledInstanceRecurrence) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy