public String_ addGenotypeSimple(String value) {
   String_ t = new String_();
   t.setValue(value);
   this.genotype.add(t);
   return t;
 }
 public String_ addPhasedSimple(String value) {
   String_ t = new String_();
   t.setValue(value);
   this.phased.add(t);
   return t;
 }
 public String_ addFeatureIdSimple(String value) {
   String_ t = new String_();
   t.setValue(value);
   this.featureId.add(t);
   return t;
 }
 public String_ addIndividualSimple(String value) {
   String_ t = new String_();
   t.setValue(value);
   this.individual.add(t);
   return t;
 }
 public String_ addReferenceAASimple(String value) {
   String_ t = new String_();
   t.setValue(value);
   this.referenceAA.add(t);
   return t;
 }
 public String_ addVariantAASimple(String value) {
   String_ t = new String_();
   t.setValue(value);
   this.variantAA.add(t);
   return t;
 }