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

com.oracle.bmc.dataintegration.model.MonthlyRuleFrequencyDetails Maven / Gradle / Ivy

There is a newer version: 3.49.0
Show newest version
/**
 * Copyright (c) 2016, 2022, Oracle and/or its affiliates.  All rights reserved.
 * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
 */
package com.oracle.bmc.dataintegration.model;

/**
 * Frequency Details model for monthly frequency based on week of month and day of week. 
* Note: Objects should always be created or deserialized using the {@link Builder}. This model * distinguishes fields that are {@code null} because they are unset from fields that are explicitly * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a * set of all explicitly set fields called {@link #__explicitlySet__}. The {@link #hashCode()} and * {@link #equals(Object)} methods are implemented to take {@link #__explicitlySet__} into account. * The constructor, on the other hand, does not set {@link #__explicitlySet__} (since the * constructor cannot distinguish explicit {@code null} from unset {@code null}). */ @javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20200430") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = MonthlyRuleFrequencyDetails.Builder.class) @com.fasterxml.jackson.annotation.JsonTypeInfo( use = com.fasterxml.jackson.annotation.JsonTypeInfo.Id.NAME, include = com.fasterxml.jackson.annotation.JsonTypeInfo.As.PROPERTY, property = "modelType") @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetFilter.NAME) public final class MonthlyRuleFrequencyDetails extends AbstractFrequencyDetails { @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { @com.fasterxml.jackson.annotation.JsonProperty("frequency") private Frequency frequency; public Builder frequency(Frequency frequency) { this.frequency = frequency; this.__explicitlySet__.add("frequency"); return this; } /** This holds the week of the month in which the schedule should be triggered. */ @com.fasterxml.jackson.annotation.JsonProperty("weekOfMonth") private WeekOfMonth weekOfMonth; /** * This holds the week of the month in which the schedule should be triggered. * * @param weekOfMonth the value to set * @return this builder */ public Builder weekOfMonth(WeekOfMonth weekOfMonth) { this.weekOfMonth = weekOfMonth; this.__explicitlySet__.add("weekOfMonth"); return this; } /** * This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can * be scheduled for every month, once in two months, once in tree months etc. */ @com.fasterxml.jackson.annotation.JsonProperty("interval") private Integer interval; /** * This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can * be scheduled for every month, once in two months, once in tree months etc. * * @param interval the value to set * @return this builder */ public Builder interval(Integer interval) { this.interval = interval; this.__explicitlySet__.add("interval"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("time") private Time time; public Builder time(Time time) { this.time = time; this.__explicitlySet__.add("time"); return this; } /** This holds the day of the week on which the schedule should be triggered. */ @com.fasterxml.jackson.annotation.JsonProperty("dayOfWeek") private DayOfWeek dayOfWeek; /** * This holds the day of the week on which the schedule should be triggered. * * @param dayOfWeek the value to set * @return this builder */ public Builder dayOfWeek(DayOfWeek dayOfWeek) { this.dayOfWeek = dayOfWeek; this.__explicitlySet__.add("dayOfWeek"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public MonthlyRuleFrequencyDetails build() { MonthlyRuleFrequencyDetails model = new MonthlyRuleFrequencyDetails( this.frequency, this.weekOfMonth, this.interval, this.time, this.dayOfWeek); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(MonthlyRuleFrequencyDetails model) { if (model.wasPropertyExplicitlySet("frequency")) { this.frequency(model.getFrequency()); } if (model.wasPropertyExplicitlySet("weekOfMonth")) { this.weekOfMonth(model.getWeekOfMonth()); } if (model.wasPropertyExplicitlySet("interval")) { this.interval(model.getInterval()); } if (model.wasPropertyExplicitlySet("time")) { this.time(model.getTime()); } if (model.wasPropertyExplicitlySet("dayOfWeek")) { this.dayOfWeek(model.getDayOfWeek()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } @Deprecated public MonthlyRuleFrequencyDetails( Frequency frequency, WeekOfMonth weekOfMonth, Integer interval, Time time, DayOfWeek dayOfWeek) { super(frequency); this.weekOfMonth = weekOfMonth; this.interval = interval; this.time = time; this.dayOfWeek = dayOfWeek; } /** This holds the week of the month in which the schedule should be triggered. */ public enum WeekOfMonth implements com.oracle.bmc.http.internal.BmcEnum { First("FIRST"), Second("SECOND"), Third("THIRD"), Fourth("FOURTH"), Fifth("FIFTH"), Last("LAST"), /** * This value is used if a service returns a value for this enum that is not recognized by * this version of the SDK. */ UnknownEnumValue(null); private static final org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(WeekOfMonth.class); private final String value; private static java.util.Map map; static { map = new java.util.HashMap<>(); for (WeekOfMonth v : WeekOfMonth.values()) { if (v != UnknownEnumValue) { map.put(v.getValue(), v); } } } WeekOfMonth(String value) { this.value = value; } @com.fasterxml.jackson.annotation.JsonValue public String getValue() { return value; } @com.fasterxml.jackson.annotation.JsonCreator public static WeekOfMonth create(String key) { if (map.containsKey(key)) { return map.get(key); } LOG.warn( "Received unknown value '{}' for enum 'WeekOfMonth', returning UnknownEnumValue", key); return UnknownEnumValue; } }; /** This holds the week of the month in which the schedule should be triggered. */ @com.fasterxml.jackson.annotation.JsonProperty("weekOfMonth") private final WeekOfMonth weekOfMonth; /** * This holds the week of the month in which the schedule should be triggered. * * @return the value */ public WeekOfMonth getWeekOfMonth() { return weekOfMonth; } /** * This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be * scheduled for every month, once in two months, once in tree months etc. */ @com.fasterxml.jackson.annotation.JsonProperty("interval") private final Integer interval; /** * This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be * scheduled for every month, once in two months, once in tree months etc. * * @return the value */ public Integer getInterval() { return interval; } @com.fasterxml.jackson.annotation.JsonProperty("time") private final Time time; public Time getTime() { return time; } /** This holds the day of the week on which the schedule should be triggered. */ public enum DayOfWeek implements com.oracle.bmc.http.internal.BmcEnum { Sunday("SUNDAY"), Monday("MONDAY"), Tuesday("TUESDAY"), Wednesday("WEDNESDAY"), Thursday("THURSDAY"), Friday("FRIDAY"), Saturday("SATURDAY"), /** * This value is used if a service returns a value for this enum that is not recognized by * this version of the SDK. */ UnknownEnumValue(null); private static final org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(DayOfWeek.class); private final String value; private static java.util.Map map; static { map = new java.util.HashMap<>(); for (DayOfWeek v : DayOfWeek.values()) { if (v != UnknownEnumValue) { map.put(v.getValue(), v); } } } DayOfWeek(String value) { this.value = value; } @com.fasterxml.jackson.annotation.JsonValue public String getValue() { return value; } @com.fasterxml.jackson.annotation.JsonCreator public static DayOfWeek create(String key) { if (map.containsKey(key)) { return map.get(key); } LOG.warn( "Received unknown value '{}' for enum 'DayOfWeek', returning UnknownEnumValue", key); return UnknownEnumValue; } }; /** This holds the day of the week on which the schedule should be triggered. */ @com.fasterxml.jackson.annotation.JsonProperty("dayOfWeek") private final DayOfWeek dayOfWeek; /** * This holds the day of the week on which the schedule should be triggered. * * @return the value */ public DayOfWeek getDayOfWeek() { return dayOfWeek; } @Override public String toString() { return this.toString(true); } /** * Return a string representation of the object. * * @param includeByteArrayContents true to include the full contents of byte arrays * @return string representation */ public String toString(boolean includeByteArrayContents) { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("MonthlyRuleFrequencyDetails("); sb.append("super=").append(super.toString(includeByteArrayContents)); sb.append(", weekOfMonth=").append(String.valueOf(this.weekOfMonth)); sb.append(", interval=").append(String.valueOf(this.interval)); sb.append(", time=").append(String.valueOf(this.time)); sb.append(", dayOfWeek=").append(String.valueOf(this.dayOfWeek)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof MonthlyRuleFrequencyDetails)) { return false; } MonthlyRuleFrequencyDetails other = (MonthlyRuleFrequencyDetails) o; return java.util.Objects.equals(this.weekOfMonth, other.weekOfMonth) && java.util.Objects.equals(this.interval, other.interval) && java.util.Objects.equals(this.time, other.time) && java.util.Objects.equals(this.dayOfWeek, other.dayOfWeek) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = super.hashCode(); result = (result * PRIME) + (this.weekOfMonth == null ? 43 : this.weekOfMonth.hashCode()); result = (result * PRIME) + (this.interval == null ? 43 : this.interval.hashCode()); result = (result * PRIME) + (this.time == null ? 43 : this.time.hashCode()); result = (result * PRIME) + (this.dayOfWeek == null ? 43 : this.dayOfWeek.hashCode()); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy