
com.kintone.client.model.app.ViewId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kintone-java-client Show documentation
Show all versions of kintone-java-client Show documentation
API client library for Kintone REST APIs on Java.
// Generated by delombok at Fri Jan 21 13:34:53 JST 2022
package com.kintone.client.model.app;
/**
* Created or updated view ID returned by Update Views API.
*/
public final class ViewId {
/**
* The View ID.
*/
private final long id;
@java.beans.ConstructorProperties({"id"})
@java.lang.SuppressWarnings("all")
public ViewId(final long id) {
this.id = id;
}
/**
* The View ID.
*/
@java.lang.SuppressWarnings("all")
public long getId() {
return this.id;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof ViewId)) return false;
final ViewId other = (ViewId) o;
if (this.getId() != other.getId()) return false;
return true;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 59;
int result = 1;
final long $id = this.getId();
result = result * PRIME + (int) ($id >>> 32 ^ $id);
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ViewId(id=" + this.getId() + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy