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

de.gwdg.metadataqa.marc.analysis.FieldWithScheme Maven / Gradle / Ivy

package de.gwdg.metadataqa.marc.analysis;

public class FieldWithScheme {
  String tag;
  String schemaName;

  public FieldWithScheme(String tag, String schemaName) {
    this.tag = tag;
    this.schemaName = schemaName;
  }

  public String getTag() {
    return tag;
  }

  public String getSchemaName() {
    return schemaName;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy