blob: 1f68a68dfb8b48beac811b5f1c4a26254ab52a4a [file] [log] [blame]
/*
* Copyright (c) 2016 Gigatronik Ingolstadt GmbH
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.eclipse.mdm.api.base.query;
/**
* JoinType enumeration.
*
* @since 1.0.0
* @author Viktor Stoehr, Gigatronik Ingolstadt GmbH
* @author Sebastian Dirsch, Gigatronik Ingolstadt GmbH
* @see Query
*/
public enum JoinType {
// ======================================================================
// Enumerations
// ======================================================================
/**
* Enforces an inner join.
*/
INNER,
/**
* Enforces an outer join.
*/
OUTER
}