com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcalculation.WindowFunction 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelconversion.Parameterization;
/**
* Models the part of SQL windows functions that are supported by the calc engine
*
*
* Java class for WindowFunction complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WindowFunction">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="partitionViewAttributeName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* <element name="order" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}Order" maxOccurs="unbounded"/>
* <element name="rankThreshold" type="{http://www.sap.com/ndb/BiModelConversion.ecore}Parameterization"/>
* <element name="rankViewAttributeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* <attribute name="type" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}TopType" />
* <attribute name="olympicRanking" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="dynamicPartitionAttributes" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WindowFunction", propOrder = {
"partitionViewAttributeName",
"order",
"rankThreshold",
"rankViewAttributeName"
})
public class WindowFunction {
/** The partition view attribute name. */
@XmlElement(required = true)
protected List partitionViewAttributeName;
/** The order. */
@XmlElement(required = true)
protected List order;
/** The rank threshold. */
@XmlElement(required = true)
protected Parameterization rankThreshold;
/** The rank view attribute name. */
protected String rankViewAttributeName;
/** The type. */
@XmlAttribute(name = "type")
protected TopType type;
/** The olympic ranking. */
@XmlAttribute(name = "olympicRanking")
protected Boolean olympicRanking;
/** The dynamic partition attributes. */
@XmlAttribute(name = "dynamicPartitionAttributes")
protected Boolean dynamicPartitionAttributes;
/**
* Gets the value of the partitionViewAttributeName 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 partitionViewAttributeName property.
*
*
* For example, to add a new item, do as follows:
*
* getPartitionViewAttributeName().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
* @return the partition view attribute name
*/
public List getPartitionViewAttributeName() {
if (partitionViewAttributeName == null) {
partitionViewAttributeName = new ArrayList();
}
return this.partitionViewAttributeName;
}
/**
* Gets the value of the order 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 order property.
*
*
* For example, to add a new item, do as follows:
*
* getOrder().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Order }
*
* @return the order
*/
public List getOrder() {
if (order == null) {
order = new ArrayList();
}
return this.order;
}
/**
* Gets the value of the rankThreshold property.
*
* @return possible object is
* {@link Parameterization }
*/
public Parameterization getRankThreshold() {
return rankThreshold;
}
/**
* Sets the value of the rankThreshold property.
*
* @param value allowed object is
* {@link Parameterization }
*/
public void setRankThreshold(Parameterization value) {
this.rankThreshold = value;
}
/**
* Gets the value of the rankViewAttributeName property.
*
* @return possible object is
* {@link String }
*/
public String getRankViewAttributeName() {
return rankViewAttributeName;
}
/**
* Sets the value of the rankViewAttributeName property.
*
* @param value allowed object is
* {@link String }
*/
public void setRankViewAttributeName(String value) {
this.rankViewAttributeName = value;
}
/**
* Gets the value of the type property.
*
* @return possible object is
* {@link TopType }
*/
public TopType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value allowed object is
* {@link TopType }
*/
public void setType(TopType value) {
this.type = value;
}
/**
* Gets the value of the olympicRanking property.
*
* @return possible object is
* {@link Boolean }
*/
public Boolean isOlympicRanking() {
return olympicRanking;
}
/**
* Sets the value of the olympicRanking property.
*
* @param value allowed object is
* {@link Boolean }
*/
public void setOlympicRanking(Boolean value) {
this.olympicRanking = value;
}
/**
* Gets the value of the dynamicPartitionAttributes property.
*
* @return possible object is
* {@link Boolean }
*/
public Boolean isDynamicPartitionAttributes() {
return dynamicPartitionAttributes;
}
/**
* Sets the value of the dynamicPartitionAttributes property.
*
* @param value allowed object is
* {@link Boolean }
*/
public void setDynamicPartitionAttributes(Boolean value) {
this.dynamicPartitionAttributes = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy