blob: 11a2cf6219fd153a58d9557aa674be2688ce4d89 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.refactoring.typeconstraints;
public interface ITypeConstraint {
/**
* Returns the resolved representation of the constraint.
* For example, if <code>toString</code> returns "[a] &lt;= [b]" and types of 'a' and 'b' are A and B,
* repespectively, then this method returns "A &lt;= B".
*
* This method is provided for debugging purposes only.
*/
String toResolvedString();
/**
* Returns whether this is a simple constraint. If so, it can be safely downcast to
* <code>SimpleTypeConstraint</code>.
*/
boolean isSimpleTypeConstraint();
}