com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcalculation.NonEquiJoinView Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 codbex or an codbex affiliate company and contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: 2022 codbex or an codbex affiliate company and contributors
* SPDX-License-Identifier: EPL-2.0
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.11.26 at 10:54:28 AM EET
//
package com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcalculation;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.Cardinality;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.JoinType;
/**
* The NonEquiJoinView (NEJ) allows join conditions with various comparisons (EQ, NE, LT, GT, LE, GE) on several columns.
* It will not be allowed as a join to a shared dimension (not part of a star join).
* Since the NEJ will be mapped to the predicate join in the calculation engine, no
* customer-defined calculations or filters are allowed.
* The predicate join requires conditions on the input sources,
* not the targets as in other nodes. The optimize join columns flag is not supported in the NEJ.
* There is also no support for the 'dynamic join property' or the 'ignore multiple outputs for filter property'.
*
*
* Java class for NonEquiJoinView complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NonEquiJoinView">
* <complexContent>
* <extension base="{http://www.sap.com/ndb/BiModelCalculation.ecore}CalculationView">
* <sequence>
* <element name="joinAttribute" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}NonEquiJoinAttribute"/>
* </sequence>
* <attribute name="joinType" use="required" type="{http://www.sap.com/ndb/BaseModelBase.ecore}JoinType" />
* <attribute name="cardinality" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Cardinality" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NonEquiJoinView", propOrder = {
"joinAttribute"
})
public class NonEquiJoinView
extends CalculationView {
/** The join attribute. */
@XmlElement(required = true)
protected NonEquiJoinAttribute joinAttribute;
/** The join type. */
@XmlAttribute(name = "joinType", required = true)
protected JoinType joinType;
/** The cardinality. */
@XmlAttribute(name = "cardinality")
protected Cardinality cardinality;
/**
* Gets the value of the joinAttribute property.
*
* @return possible object is
* {@link NonEquiJoinAttribute }
*/
public NonEquiJoinAttribute getJoinAttribute() {
return joinAttribute;
}
/**
* Sets the value of the joinAttribute property.
*
* @param value allowed object is
* {@link NonEquiJoinAttribute }
*/
public void setJoinAttribute(NonEquiJoinAttribute value) {
this.joinAttribute = value;
}
/**
* Gets the value of the joinType property.
*
* @return possible object is
* {@link JoinType }
*/
public JoinType getJoinType() {
return joinType;
}
/**
* Sets the value of the joinType property.
*
* @param value allowed object is
* {@link JoinType }
*/
public void setJoinType(JoinType value) {
this.joinType = value;
}
/**
* Gets the value of the cardinality property.
*
* @return possible object is
* {@link Cardinality }
*/
public Cardinality getCardinality() {
return cardinality;
}
/**
* Sets the value of the cardinality property.
*
* @param value allowed object is
* {@link Cardinality }
*/
public void setCardinality(Cardinality value) {
this.cardinality = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy