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

org.neo4j.graphdb.schema.ConstraintDefinition Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
/*
 * Copyright (c) "Neo4j"
 * Neo4j Sweden AB [https://neo4j.com]
 *
 * This file is part of Neo4j.
 *
 * Neo4j 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.
 *
 * This program 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 this program.  If not, see .
 */
package org.neo4j.graphdb.schema;

import org.neo4j.annotations.api.PublicApi;
import org.neo4j.graphdb.Label;
import org.neo4j.graphdb.RelationshipType;

/**
 * Definition of a constraint.
 */
@PublicApi
public interface ConstraintDefinition {
    /**
     * This accessor method returns a label which this constraint is associated with if this constraint has type
     * {@link ConstraintType#UNIQUENESS}, {@link ConstraintType#NODE_PROPERTY_EXISTENCE}, or {@link ConstraintType#NODE_KEY}.
     * Type of the constraint can be examined by calling {@link #getConstraintType()} or
     * {@link #isConstraintType(ConstraintType)} methods.
     *
     * @return the {@link Label} this constraint is associated with.
     * @throws IllegalStateException when this constraint is associated with relationships.
     */
    Label getLabel();

    /**
     * This accessor method returns a relationship type which this constraint is associated with if this constraint
     * has type {@link ConstraintType#RELATIONSHIP_UNIQUENESS}, {@link ConstraintType#RELATIONSHIP_PROPERTY_EXISTENCE},
     * or {@link ConstraintType#RELATIONSHIP_KEY}.
     * Type of the constraint can be examined by calling {@link #getConstraintType()} or
     * {@link #isConstraintType(ConstraintType)} methods.
     *
     * @return the {@link RelationshipType} this constraint is associated with.
     * @throws IllegalStateException when this constraint is associated with nodes.
     */
    RelationshipType getRelationshipType();

    /**
     * @return the property keys this constraint is about.
     */
    Iterable getPropertyKeys();

    /**
     * Drops this constraint.
     */
    void drop();

    /**
     * @return the {@link ConstraintType} of constraint.
     */
    ConstraintType getConstraintType();

    /**
     * @param type a constraint type
     * @return true if this constraint definition's type is equal to the provided type
     */
    boolean isConstraintType(ConstraintType type);

    /**
     * Get the name given to this constraint when it was created.
     * Constraints that were not explicitly given a name at creation, will have an auto-generated name.
     * @return the unique name of the constraint.
     */
    String getName();

    /**
     * This accessor method returns the {@link PropertyType}(s) this constraint is associated with if this constraint
     * has type {@link ConstraintType#NODE_PROPERTY_TYPE} or {@link ConstraintType#RELATIONSHIP_PROPERTY_TYPE}.
     * Type of the constraint can be examined by calling {@link #getConstraintType()} or
     * {@link #isConstraintType(ConstraintType)} methods.
     *
     * @return the {@link PropertyType}s this constraint is associated with.
     * @throws IllegalStateException when this constraint is not of an applicable type.
     */
    PropertyType[] getPropertyType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy