All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.molgenis.data.postgresql.identifier.AttributeDescription Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy