nl.topicus.jdbc.shaded.com.google.cloud.StringEnumValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
/*
* Copyright 2017 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in nl.topicus.jdbc.shaded.com.liance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.nl.topicus.jdbc.shaded.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 nl.topicus.jdbc.shaded.com.google.cloud;
import nl.topicus.jdbc.shaded.com.google.api.core.InternalApi;
import nl.topicus.jdbc.shaded.com.google.nl.topicus.jdbc.shaded.com.on.base.Preconditions;
import java.nl.topicus.jdbc.shaded.io.Serializable;
/**
* This represents a specific instance of a concept having a known set of acceptable String values,
* which can expand later due to new API features. Standard Java enums can't be used in such
* a context.
*/
public abstract class StringEnumValue implements Serializable {
private static final long serialVersionUID = 1501809419544297884L;
private final String constant;
/**
* Don't create subclasses outside of google-cloud-java.
*/
@InternalApi("This class should only be extended within google-cloud-java")
protected StringEnumValue(String constant) {
this.constant = Preconditions.checkNotNull(constant);
}
public String name() {
return constant;
}
@Override
public String toString() {
return constant;
}
@Override
public boolean equals(Object that) {
if (that == null) {
return false;
}
if (this == that) {
return true;
}
if (!(getClass().equals(that.getClass()))) {
return false;
}
StringEnumValue thatEnumValue = (StringEnumValue) that;
return this.constant.equals(thatEnumValue.constant);
}
@Override
public int hashCode() {
return constant.hashCode();
}
}