
com.arangodb.entity.CursorWarning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
The newest version!
package com.arangodb.entity;
import java.util.Objects;
public final class CursorWarning {
private Integer code;
private String message;
public Integer getCode() {
return code;
}
public String getMessage() {
return message;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof CursorWarning)) return false;
CursorWarning that = (CursorWarning) o;
return Objects.equals(code, that.code) && Objects.equals(message, that.message);
}
@Override
public int hashCode() {
return Objects.hash(code, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy