com.solidfire.element.api.DaysOfMonthFrequency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solidfire-sdk-java Show documentation
Show all versions of solidfire-sdk-java Show documentation
Library for interfacing with the Public and Incubating SolidFire Element API.
The newest version!
/*
* Copyright © 2014-2016 NetApp, Inc. 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.solidfire.element.api;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Objects;
/**
* This class represents the Frequency Type "Days of Month"
*/
public class DaysOfMonthFrequency implements Frequency, Serializable {
private static final long serialVersionUID = 1L;
private final Long minutes;
private final Long hours;
private final Long[] monthdays;
public DaysOfMonthFrequency(final Long minutes, final Long hours, final Long[] monthdays) {
this.minutes = minutes;
this.hours = hours;
this.monthdays = monthdays;
}
/**
* Getter for property 'minutes'.
*
* @return Value for property 'minutes'.
*/
public Long getMinutes() {
return this.minutes;
}
/**
* Getter for property 'hours'.
*
* @return Value for property 'hours'.
*/
public Long getHours() {
return this.hours;
}
/**
* Getter for property 'monthdays'.
*
* @return Value for property 'monthdays'.
*/
public Long[] getMonthdays() {
return this.monthdays;
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DaysOfMonthFrequency that = (DaysOfMonthFrequency) o;
return Objects.equals(minutes, that.minutes)
&& Objects.equals(hours, that.hours)
&& Objects.deepEquals(monthdays, that.monthdays);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
return Objects.hash(minutes, hours, monthdays);
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append("{ ");
sb.append(" minutes : ").append(minutes).append(",");
sb.append(" hours : ").append(hours).append(",");
sb.append(" monthdays : ").append(Arrays.toString(monthdays));
sb.append(" }");
return sb.toString();
}
public static Builder builder() {
return new Builder();
}
public final Builder asBuilder() {
return new Builder().buildFrom(this);
}
public static class Builder {
private Long minutes;
private Long hours;
private Long[] monthdays;
/**
* Do not instantiate Builder.
*/
private Builder() {
}
public DaysOfMonthFrequency build() {
return new DaysOfMonthFrequency(
this.minutes,
this.hours,
this.monthdays);
}
private DaysOfMonthFrequency.Builder buildFrom(final DaysOfMonthFrequency req) {
this.minutes = req.minutes;
this.hours = req.hours;
this.monthdays = req.monthdays;
return this;
}
public DaysOfMonthFrequency.Builder minutes(final Long minutes) {
this.minutes = minutes;
return this;
}
public DaysOfMonthFrequency.Builder hours(final Long hours) {
this.hours = hours;
return this;
}
public DaysOfMonthFrequency.Builder monthdays(final Long[] monthdays) {
this.monthdays = monthdays;
return this;
}
}
}