/* * Copyright 2018-2023 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.lexmodelsv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * <p> * Contains the time metric, interval, and method by which to bin the analytics data. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/AnalyticsBinBySpecification" * target="_top">AWS API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AnalyticsBinBySpecification implements Serializable, Cloneable, StructuredPojo { /** * <p> * Specifies the time metric by which to bin the analytics data. * </p> */ private String name; /** * <p> * Specifies the interval of time by which to bin the analytics data. * </p> */ private String interval; /** * <p> * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the * default order is by the key of the bin in descending order. * </p> */ private String order; /** * <p> * Specifies the time metric by which to bin the analytics data. * </p> * * @param name * Specifies the time metric by which to bin the analytics data. * @see AnalyticsBinByName */ public void setName(String name) { this.name = name; } /** * <p> * Specifies the time metric by which to bin the analytics data. * </p> * * @return Specifies the time metric by which to bin the analytics data. * @see AnalyticsBinByName */ public String getName() { return this.name; } /** * <p> * Specifies the time metric by which to bin the analytics data. * </p> * * @param name * Specifies the time metric by which to bin the analytics data. * @return Returns a reference to this object so that method calls can be chained together. * @see AnalyticsBinByName */ public AnalyticsBinBySpecification withName(String name) { setName(name); return this; } /** * <p> * Specifies the time metric by which to bin the analytics data. * </p> * * @param name * Specifies the time metric by which to bin the analytics data. * @return Returns a reference to this object so that method calls can be chained together. * @see AnalyticsBinByName */ public AnalyticsBinBySpecification withName(AnalyticsBinByName name) { this.name = name.toString(); return this; } /** * <p> * Specifies the interval of time by which to bin the analytics data. * </p> * * @param interval * Specifies the interval of time by which to bin the analytics data. * @see AnalyticsInterval */ public void setInterval(String interval) { this.interval = interval; } /** * <p> * Specifies the interval of time by which to bin the analytics data. * </p> * * @return Specifies the interval of time by which to bin the analytics data. * @see AnalyticsInterval */ public String getInterval() { return this.interval; } /** * <p> * Specifies the interval of time by which to bin the analytics data. * </p> * * @param interval * Specifies the interval of time by which to bin the analytics data. * @return Returns a reference to this object so that method calls can be chained together. * @see AnalyticsInterval */ public AnalyticsBinBySpecification withInterval(String interval) { setInterval(interval); return this; } /** * <p> * Specifies the interval of time by which to bin the analytics data. * </p> * * @param interval * Specifies the interval of time by which to bin the analytics data. * @return Returns a reference to this object so that method calls can be chained together. * @see AnalyticsInterval */ public AnalyticsBinBySpecification withInterval(AnalyticsInterval interval) { this.interval = interval.toString(); return this; } /** * <p> * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the * default order is by the key of the bin in descending order. * </p> * * @param order * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, * the default order is by the key of the bin in descending order. * @see AnalyticsSortOrder */ public void setOrder(String order) { this.order = order; } /** * <p> * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the * default order is by the key of the bin in descending order. * </p> * * @return Specifies whether to bin the analytics data in ascending or descending order. If this field is left * blank, the default order is by the key of the bin in descending order. * @see AnalyticsSortOrder */ public String getOrder() { return this.order; } /** * <p> * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the * default order is by the key of the bin in descending order. * </p> * * @param order * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, * the default order is by the key of the bin in descending order. * @return Returns a reference to this object so that method calls can be chained together. * @see AnalyticsSortOrder */ public AnalyticsBinBySpecification withOrder(String order) { setOrder(order); return this; } /** * <p> * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the * default order is by the key of the bin in descending order. * </p> * * @param order * Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, * the default order is by the key of the bin in descending order. * @return Returns a reference to this object so that method calls can be chained together. * @see AnalyticsSortOrder */ public AnalyticsBinBySpecification withOrder(AnalyticsSortOrder order) { this.order = order.toString(); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getInterval() != null) sb.append("Interval: ").append(getInterval()).append(","); if (getOrder() != null) sb.append("Order: ").append(getOrder()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AnalyticsBinBySpecification == false) return false; AnalyticsBinBySpecification other = (AnalyticsBinBySpecification) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == 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.getOrder() == null ^ this.getOrder() == null) return false; if (other.getOrder() != null && other.getOrder().equals(this.getOrder()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getInterval() == null) ? 0 : getInterval().hashCode()); hashCode = prime * hashCode + ((getOrder() == null) ? 0 : getOrder().hashCode()); return hashCode; } @Override public AnalyticsBinBySpecification clone() { try { return (AnalyticsBinBySpecification) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.lexmodelsv2.model.transform.AnalyticsBinBySpecificationMarshaller.getInstance().marshall(this, protocolMarshaller); } }