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

org.pharmgkb.parser.vcf.model.ReservedProperty Maven / Gradle / Ivy

The newest version!
package org.pharmgkb.parser.vcf.model;

import javax.annotation.Nonnull;

/**
 * A field specified as reserved in the VCF specification.
 * @author Douglas Myers-Turnbull
 */
public interface ReservedProperty {

  @Nonnull
  public String getId();

  @Nonnull
  public String getDescription();

  @Nonnull
  public Class getType();

  boolean isList();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy