![JAR search and dependency download from the Maven repository](/logo.png)
com.nmote.iim4j.srs.SubjectReferenceSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nmote-iim4j Show documentation
Show all versions of nmote-iim4j Show documentation
IIM4J allows Java programmers to read, write and process IPTC IIM version 4 files.
The newest version!
/*
* Copyright (c) Nmote Ltd. 2004-2015. All rights reserved.
* See LICENSE doc in a root of project folder for additional information.
*/
package com.nmote.iim4j.srs;
import java.util.Collection;
/**
* SubjectReferenceSystem
*/
public interface SubjectReferenceSystem {
SubjectReferenceSystem DEFAULT = StandardEN.create();
SubjectReference get(String number);
SubjectReference getParent(SubjectReference ref);
String getName(SubjectReference ref);
String getDescription(SubjectReference ref);
Collection getChildren(SubjectReference ref);
Collection getTopSubjectReferences();
Collection getAllSubjectReferences();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy