org.molgenis.data.postgresql.identifier.AttributeDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-postgresql Show documentation
Show all versions of molgenis-data-postgresql Show documentation
Data layer persistence in PostgreSQL.
package org.molgenis.data.postgresql.identifier;
import com.google.auto.value.AutoValue;
@AutoValue
@SuppressWarnings(
"squid:S1610") // Abstract classes without fields should be converted to interfaces
public abstract class AttributeDescription {
public abstract String getName();
public static AttributeDescription create(String name) {
return new AutoValue_AttributeDescription(name);
}
}