us.fatehi.utility.property.AbstractProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of schemacrawler Show documentation
Show all versions of schemacrawler Show documentation
SchemaCrawler is an open-source Java API that makes working with database metadata as easy as working with plain old Java objects. SchemaCrawler is also a database schema discovery and comprehension, and schema documentation tool. You can search for database schema objects using regular expressions, and output the schema and data in a readable text format. The output is designed to be diff-ed against other database schemas.
/*
========================================================================
SchemaCrawler
http://www.schemacrawler.com
Copyright (c) 2000-2024, Sualeh Fatehi .
All rights reserved.
------------------------------------------------------------------------
SchemaCrawler is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
SchemaCrawler and the accompanying materials are made available under
the terms of the Eclipse Public License v1.0, GNU General Public License
v3 or GNU Lesser General Public License v3.
You may elect to redistribute this code under any of these licenses.
The Eclipse Public License is available at:
http://www.eclipse.org/legal/epl-v10.html
The GNU General Public License v3 and the GNU Lesser General Public
License v3 are available at:
http://www.gnu.org/licenses/
========================================================================
*/
package us.fatehi.utility.property;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Objects;
import static java.util.Objects.requireNonNull;
public abstract class AbstractProperty implements Property {
private static final long serialVersionUID = -7150431683440256142L;
private final PropertyName propertyName;
private final Serializable value;
protected AbstractProperty(final PropertyName name, final Serializable value) {
propertyName = requireNonNull(name, "No property name provided");
if (value != null && value.getClass().isArray()) {
this.value = (Serializable) Arrays.asList((Object[]) value);
} else {
this.value = value;
}
}
@Override
public final boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if ((obj == null) || !(obj instanceof Property)) {
return false;
}
final Property other = (Property) obj;
boolean nameEquals;
if (obj instanceof AbstractProperty) {
nameEquals = Objects.equals(propertyName, ((AbstractProperty) obj).propertyName);
} else /* if (obj instanceof Property) */ {
nameEquals = Objects.equals(propertyName.getName(), other.getName());
}
return nameEquals && Objects.equals(value, other.getValue());
}
/** {@inheritDoc} */
@Override
public final String getName() {
return propertyName.getName();
}
/** {@inheritDoc} */
@Override
public final String getDescription() {
return propertyName.getDescription();
}
/** {@inheritDoc} */
@Override
public Serializable getValue() {
return value;
}
@Override
public final int hashCode() {
return Objects.hash(propertyName, value);
}
@Override
public String toString() {
return getName() + " = " + getValue();
}
}