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

org.mycore.datamodel.classifications2.MCRCategory Maven / Gradle / Ivy

There is a newer version: 2024.02
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.datamodel.classifications2;

import java.net.URI;
import java.util.List;
import java.util.Optional;
import java.util.Set;

/**
 * @author Thomas Scheffler (yagee)
 * 
 * @version $Revision$ $Date$
 * @since 2.0
 */
public interface MCRCategory {

    /**
     * @return true if this is a root category
     */
    boolean isClassification();

    /**
     * @return true if this is not a root category
     * @see #isClassification()
     */
    boolean isCategory();

    /**
     * Tells if this category has subcategories.
     * 
     * @return true if this category has subcategories
     * @see #getChildren()
     */
    boolean hasChildren();

    /**
     * Returns a list of subcategories.
     * 
     * Implementors must never return null if no children are
     * present. As this method may need a new call the underlaying persistence
     * layer use hasChildren() if you just want to know if subcategories are
     * present. Changes to the list may not affect the underlaying persistence
     * layer.
     * 
     * @return subcategories
     * @see #hasChildren()
     */
    List getChildren();

    /**
     * @return the id
     */
    MCRCategoryID getId();

    /**
     * @param id
     *            the id to set
     */
    void setId(MCRCategoryID id);

    /**
     * @return the labels
     */
    Set getLabels();

    /**
     * @return the label in the current language (if available), default language (if available), any language in
     * MCR.Metadata.Languages(if available), any other language that does not start with x- or any other language
     */
    Optional getCurrentLabel();

    /**
     * @return the label in the specified language (if available) or null
     */
    Optional getLabel(String lang);

    /**
     * Returns the hierarchie level of this category.
     * 
     * @return 0 if this is the root category
     */
    int getLevel();

    /**
     * Returns root category (the classification).
     * 
     * @return the root category
     */
    MCRCategory getRoot();

    /**
     * Returns the parent element
     * 
     * @return the categories parent or null if isClassification()==true or
     *         category currently not attached
     */
    MCRCategory getParent();

    /**
     * Returns the URI associated with this category.
     * 
     * @return the URI
     */
    URI getURI();

    /**
     * @param uri
     *            the URI to set
     */
    void setURI(URI uri);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy