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

com.amazonaws.services.cognitosync.model.Record Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2010-2015 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.cognitosync.model;

import java.io.Serializable;

/**
 * Record
 */
public class Record implements Serializable {

    private String key;

    private String value;

    private Long syncCount;

    private java.util.Date lastModifiedDate;

    private String lastModifiedBy;

    private java.util.Date deviceLastModifiedDate;

    /**
     * Returns the value of the Key property for this object.
     * 

* Constraints:
* Length: 1 - 1024
* * @return The value of the Key property for this object. */ public String getKey() { return key; } /** * Sets the value of the Key property for this object. *

* Constraints:
* Length: 1 - 1024
* * @param key The new value for the Key property for this object. */ public void setKey(String key) { this.key = key; } /** * Sets the value of the Key property for this object. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 1024
* * @param key The new value for the Key property for this object. * * @return A reference to this updated object so that method calls can be chained * together. */ public Record withKey(String key) { this.key = key; return this; } /** * Returns the value of the Value property for this object. *

* Constraints:
* Length: 0 - 1048575
* * @return The value of the Value property for this object. */ public String getValue() { return value; } /** * Sets the value of the Value property for this object. *

* Constraints:
* Length: 0 - 1048575
* * @param value The new value for the Value property for this object. */ public void setValue(String value) { this.value = value; } /** * Sets the value of the Value property for this object. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 0 - 1048575
* * @param value The new value for the Value property for this object. * * @return A reference to this updated object so that method calls can be chained * together. */ public Record withValue(String value) { this.value = value; return this; } /** * Returns the value of the SyncCount property for this object. * * @return The value of the SyncCount property for this object. */ public Long getSyncCount() { return syncCount; } /** * Sets the value of the SyncCount property for this object. * * @param syncCount The new value for the SyncCount property for this object. */ public void setSyncCount(Long syncCount) { this.syncCount = syncCount; } /** * Sets the value of the SyncCount property for this object. *

* Returns a reference to this object so that method calls can be chained together. * * @param syncCount The new value for the SyncCount property for this object. * * @return A reference to this updated object so that method calls can be chained * together. */ public Record withSyncCount(Long syncCount) { this.syncCount = syncCount; return this; } /** * Returns the value of the LastModifiedDate property for this object. * * @return The value of the LastModifiedDate property for this object. */ public java.util.Date getLastModifiedDate() { return lastModifiedDate; } /** * Sets the value of the LastModifiedDate property for this object. * * @param lastModifiedDate The new value for the LastModifiedDate property for this object. */ public void setLastModifiedDate(java.util.Date lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } /** * Sets the value of the LastModifiedDate property for this object. *

* Returns a reference to this object so that method calls can be chained together. * * @param lastModifiedDate The new value for the LastModifiedDate property for this object. * * @return A reference to this updated object so that method calls can be chained * together. */ public Record withLastModifiedDate(java.util.Date lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; return this; } /** * Returns the value of the LastModifiedBy property for this object. * * @return The value of the LastModifiedBy property for this object. */ public String getLastModifiedBy() { return lastModifiedBy; } /** * Sets the value of the LastModifiedBy property for this object. * * @param lastModifiedBy The new value for the LastModifiedBy property for this object. */ public void setLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; } /** * Sets the value of the LastModifiedBy property for this object. *

* Returns a reference to this object so that method calls can be chained together. * * @param lastModifiedBy The new value for the LastModifiedBy property for this object. * * @return A reference to this updated object so that method calls can be chained * together. */ public Record withLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; return this; } /** * Returns the value of the DeviceLastModifiedDate property for this * object. * * @return The value of the DeviceLastModifiedDate property for this object. */ public java.util.Date getDeviceLastModifiedDate() { return deviceLastModifiedDate; } /** * Sets the value of the DeviceLastModifiedDate property for this object. * * @param deviceLastModifiedDate The new value for the DeviceLastModifiedDate property for this object. */ public void setDeviceLastModifiedDate(java.util.Date deviceLastModifiedDate) { this.deviceLastModifiedDate = deviceLastModifiedDate; } /** * Sets the value of the DeviceLastModifiedDate property for this object. *

* Returns a reference to this object so that method calls can be chained together. * * @param deviceLastModifiedDate The new value for the DeviceLastModifiedDate property for this object. * * @return A reference to this updated object so that method calls can be chained * together. */ public Record withDeviceLastModifiedDate(java.util.Date deviceLastModifiedDate) { this.deviceLastModifiedDate = deviceLastModifiedDate; 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 (getKey() != null) sb.append("Key: " + getKey() + ","); if (getValue() != null) sb.append("Value: " + getValue() + ","); if (getSyncCount() != null) sb.append("SyncCount: " + getSyncCount() + ","); if (getLastModifiedDate() != null) sb.append("LastModifiedDate: " + getLastModifiedDate() + ","); if (getLastModifiedBy() != null) sb.append("LastModifiedBy: " + getLastModifiedBy() + ","); if (getDeviceLastModifiedDate() != null) sb.append("DeviceLastModifiedDate: " + getDeviceLastModifiedDate() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getKey() == null) ? 0 : getKey().hashCode()); hashCode = prime * hashCode + ((getValue() == null) ? 0 : getValue().hashCode()); hashCode = prime * hashCode + ((getSyncCount() == null) ? 0 : getSyncCount().hashCode()); hashCode = prime * hashCode + ((getLastModifiedDate() == null) ? 0 : getLastModifiedDate().hashCode()); hashCode = prime * hashCode + ((getLastModifiedBy() == null) ? 0 : getLastModifiedBy().hashCode()); hashCode = prime * hashCode + ((getDeviceLastModifiedDate() == null) ? 0 : getDeviceLastModifiedDate().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Record == false) return false; Record other = (Record)obj; if (other.getKey() == null ^ this.getKey() == null) return false; if (other.getKey() != null && other.getKey().equals(this.getKey()) == false) return false; if (other.getValue() == null ^ this.getValue() == null) return false; if (other.getValue() != null && other.getValue().equals(this.getValue()) == false) return false; if (other.getSyncCount() == null ^ this.getSyncCount() == null) return false; if (other.getSyncCount() != null && other.getSyncCount().equals(this.getSyncCount()) == false) return false; if (other.getLastModifiedDate() == null ^ this.getLastModifiedDate() == null) return false; if (other.getLastModifiedDate() != null && other.getLastModifiedDate().equals(this.getLastModifiedDate()) == false) return false; if (other.getLastModifiedBy() == null ^ this.getLastModifiedBy() == null) return false; if (other.getLastModifiedBy() != null && other.getLastModifiedBy().equals(this.getLastModifiedBy()) == false) return false; if (other.getDeviceLastModifiedDate() == null ^ this.getDeviceLastModifiedDate() == null) return false; if (other.getDeviceLastModifiedDate() != null && other.getDeviceLastModifiedDate().equals(this.getDeviceLastModifiedDate()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy