com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcalculation.JoinView 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.Cardinality;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.JoinType;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.ReferentialDirection;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.TemporalJoinProperties;
/**
* A view/node that combines exactly two inputs by a join The first input is treated as left table and the second input is treated
* as right table. In case of a text join the second node is the text table
*
*
* Java class for JoinView complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JoinView">
* <complexContent>
* <extension base="{http://www.sap.com/ndb/BiModelCalculation.ecore}CalculationView">
* <sequence>
* <element name="joinAttribute" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}JoinAttribute" maxOccurs="unbounded" minOccurs="0"/>
* <element name="temporalJoinProperties" type="{http://www.sap.com/ndb/BaseModelBase.ecore}TemporalJoinProperties" minOccurs="0"/>
* </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" />
* <attribute name="referentialDirection" type="{http://www.sap.com/ndb/BaseModelBase.ecore}ReferentialDirection" />
* <attribute name="languageColumn" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}ViewAttributeName" />
* <attribute name="dynamic" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="optimizeJoinColumns" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="multiJoinNode" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="centralTable" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="joinOrder" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}JoinOrder" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JoinView", propOrder = {
"joinAttribute",
"temporalJoinProperties"
})
public class JoinView
extends CalculationView {
/** The join attribute. */
protected List joinAttribute;
/** The temporal join properties. */
protected TemporalJoinProperties temporalJoinProperties;
/** The join type. */
@XmlAttribute(name = "joinType", required = true)
protected JoinType joinType;
/** The cardinality. */
@XmlAttribute(name = "cardinality")
protected Cardinality cardinality;
/** The referential direction. */
@XmlAttribute(name = "referentialDirection")
protected ReferentialDirection referentialDirection;
/** The language column. */
@XmlAttribute(name = "languageColumn")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String languageColumn;
/** The dynamic. */
@XmlAttribute(name = "dynamic")
protected Boolean dynamic;
/** The optimize join columns. */
@XmlAttribute(name = "optimizeJoinColumns")
protected Boolean optimizeJoinColumns;
/** The multi join node. */
@XmlAttribute(name = "multiJoinNode")
protected String multiJoinNode;
/** The central table. */
@XmlAttribute(name = "centralTable")
protected String centralTable;
/** The join order. */
@XmlAttribute(name = "joinOrder")
protected JoinOrder joinOrder;
/**
* Gets the value of the joinAttribute property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the joinAttribute property.
*
*
* For example, to add a new item, do as follows:
*
* getJoinAttribute().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JoinAttribute }
*
* @return the join attribute
*/
public List getJoinAttribute() {
if (joinAttribute == null) {
joinAttribute = new ArrayList();
}
return this.joinAttribute;
}
/**
* Gets the value of the temporalJoinProperties property.
*
* @return possible object is
* {@link TemporalJoinProperties }
*/
public TemporalJoinProperties getTemporalJoinProperties() {
return temporalJoinProperties;
}
/**
* Sets the value of the temporalJoinProperties property.
*
* @param value allowed object is
* {@link TemporalJoinProperties }
*/
public void setTemporalJoinProperties(TemporalJoinProperties value) {
this.temporalJoinProperties = 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;
}
/**
* Gets the value of the referentialDirection property.
*
* @return possible object is
* {@link ReferentialDirection }
*/
public ReferentialDirection getReferentialDirection() {
return referentialDirection;
}
/**
* Sets the value of the referentialDirection property.
*
* @param value allowed object is
* {@link ReferentialDirection }
*/
public void setReferentialDirection(ReferentialDirection value) {
this.referentialDirection = value;
}
/**
* Gets the value of the languageColumn property.
*
* @return possible object is
* {@link String }
*/
public String getLanguageColumn() {
return languageColumn;
}
/**
* Sets the value of the languageColumn property.
*
* @param value allowed object is
* {@link String }
*/
public void setLanguageColumn(String value) {
this.languageColumn = value;
}
/**
* Gets the value of the dynamic property.
*
* @return possible object is
* {@link Boolean }
*/
public Boolean isDynamic() {
return dynamic;
}
/**
* Sets the value of the dynamic property.
*
* @param value allowed object is
* {@link Boolean }
*/
public void setDynamic(Boolean value) {
this.dynamic = value;
}
/**
* Gets the value of the optimizeJoinColumns property.
*
* @return possible object is
* {@link Boolean }
*/
public Boolean isOptimizeJoinColumns() {
return optimizeJoinColumns;
}
/**
* Sets the value of the optimizeJoinColumns property.
*
* @param value allowed object is
* {@link Boolean }
*/
public void setOptimizeJoinColumns(Boolean value) {
this.optimizeJoinColumns = value;
}
/**
* Gets the value of the multiJoinNode property.
*
* @return possible object is
* {@link String }
*/
public String getMultiJoinNode() {
return multiJoinNode;
}
/**
* Sets the value of the multiJoinNode property.
*
* @param value allowed object is
* {@link String }
*/
public void setMultiJoinNode(String value) {
this.multiJoinNode = value;
}
/**
* Gets the value of the centralTable property.
*
* @return possible object is
* {@link String }
*/
public String getCentralTable() {
return centralTable;
}
/**
* Sets the value of the centralTable property.
*
* @param value allowed object is
* {@link String }
*/
public void setCentralTable(String value) {
this.centralTable = value;
}
/**
* Gets the value of the joinOrder property.
*
* @return possible object is
* {@link JoinOrder }
*/
public JoinOrder getJoinOrder() {
return joinOrder;
}
/**
* Sets the value of the joinOrder property.
*
* @param value allowed object is
* {@link JoinOrder }
*/
public void setJoinOrder(JoinOrder value) {
this.joinOrder = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy