org.pharmgkb.parser.vcf.model.ReservedProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vcf-parser Show documentation
Show all versions of vcf-parser Show documentation
A strict streaming parser for VCF 4.1/4.2.
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();
}