-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementing MARC Update No. 38 (June 2024) #545
- Loading branch information
Showing
13 changed files
with
130 additions
and
16 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
.../de/gwdg/metadataqa/marc/definition/general/codelist/AccessibilityContentSourceCodes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package de.gwdg.metadataqa.marc.definition.general.codelist; | ||
|
||
import de.gwdg.metadataqa.marc.Utils; | ||
|
||
/** | ||
* Accessibility Content Source Codes | ||
* https://www.loc.gov/standards/sourcelist/accessibility.html | ||
*/ | ||
public class AccessibilityContentSourceCodes extends CodeList { | ||
|
||
private void initialize() { | ||
name = "Accessibility Content Source Codes"; | ||
url = "https://www.loc.gov/standards/sourcelist/accessibility.html"; | ||
codes = Utils.generateCodes( | ||
"sapdv", "Schema.org Accessibility Properties for Discoverability Vocabulary (Accessibility Discoverability Vocabulary for Schema.org Community Group)" | ||
); | ||
indexCodes(); | ||
} | ||
|
||
private static AccessibilityContentSourceCodes uniqueInstance; | ||
|
||
private AccessibilityContentSourceCodes() { | ||
initialize(); | ||
} | ||
|
||
public static AccessibilityContentSourceCodes getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new AccessibilityContentSourceCodes(); | ||
return uniqueInstance; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.