All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcube.MeasureGroup 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.bimodelcube;

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.bimodeldatafoundation.Layout;
import com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation.LogicalJoins;
import com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation.LogicalObject;
import com.codbex.kronos.parser.hdbcalculationview.ndb.datamodeltype.ExpressionLanguage;


/**
 * Java class for MeasureGroup complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="MeasureGroup">
 *   <complexContent>
 *     <extension base="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}LogicalObject">
 *       <sequence>
 *         <element name="baseMeasures" type="{http://www.sap.com/ndb/BiModelCube.ecore}BaseMeasures" minOccurs="0"/>
 *         <element name="calculatedMeasures" type="{http://www.sap.com/ndb/BiModelCube.ecore}CalculatedMeasures" minOccurs="0"/>
 *         <element name="restrictedMeasures" type="{http://www.sap.com/ndb/BiModelCube.ecore}RestrictedMeasures" minOccurs="0"/>
 *         <element name="measures" type="{http://www.sap.com/ndb/BiModelCube.ecore}Measure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="localDimensions" type="{http://www.sap.com/ndb/BiModelCube.ecore}LocalDimensions" minOccurs="0"/>
 *         <element name="sharedDimensions" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}LogicalJoins" minOccurs="0"/>
 *         <element name="sortAttributes" type="{http://www.sap.com/ndb/BiModelCube.ecore}SortAttributes" minOccurs="0"/>
 *         <element name="filter" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}Expression" minOccurs="0"/>
 *         <element name="layout" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}Layout" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="outputName" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
 *       <attribute name="filterExpressionLanguage" type="{http://www.sap.com/ndb/DataModelType.ecore}ExpressionLanguage" />
 *       <attribute name="ignoreMultipleOutputsForFilter" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MeasureGroup", propOrder = { "baseMeasures", "calculatedMeasures", "restrictedMeasures", "measures", "localDimensions", "sharedDimensions", "sortAttributes", "filter", "layout" }) public class MeasureGroup extends LogicalObject { /** The base measures. */ protected BaseMeasures baseMeasures; /** The calculated measures. */ protected CalculatedMeasures calculatedMeasures; /** The restricted measures. */ protected RestrictedMeasures restrictedMeasures; /** The measures. */ protected List measures; /** The local dimensions. */ protected LocalDimensions localDimensions; /** The shared dimensions. */ protected LogicalJoins sharedDimensions; /** The sort attributes. */ protected SortAttributes sortAttributes; /** The filter. */ protected String filter; /** The layout. */ protected Layout layout; /** The output name. */ @XmlAttribute(name = "outputName") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String outputName; /** The filter expression language. */ @XmlAttribute(name = "filterExpressionLanguage") protected ExpressionLanguage filterExpressionLanguage; /** The ignore multiple outputs for filter. */ @XmlAttribute(name = "ignoreMultipleOutputsForFilter") protected Boolean ignoreMultipleOutputsForFilter; /** * Gets the value of the baseMeasures property. * * @return possible object is * {@link BaseMeasures } */ public BaseMeasures getBaseMeasures() { return baseMeasures; } /** * Sets the value of the baseMeasures property. * * @param value allowed object is * {@link BaseMeasures } */ public void setBaseMeasures(BaseMeasures value) { this.baseMeasures = value; } /** * Gets the value of the calculatedMeasures property. * * @return possible object is * {@link CalculatedMeasures } */ public CalculatedMeasures getCalculatedMeasures() { return calculatedMeasures; } /** * Sets the value of the calculatedMeasures property. * * @param value allowed object is * {@link CalculatedMeasures } */ public void setCalculatedMeasures(CalculatedMeasures value) { this.calculatedMeasures = value; } /** * Gets the value of the restrictedMeasures property. * * @return possible object is * {@link RestrictedMeasures } */ public RestrictedMeasures getRestrictedMeasures() { return restrictedMeasures; } /** * Sets the value of the restrictedMeasures property. * * @param value allowed object is * {@link RestrictedMeasures } */ public void setRestrictedMeasures(RestrictedMeasures value) { this.restrictedMeasures = value; } /** * Gets the value of the measures 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 measures property. * * * For example, to add a new item, do as follows: *
   *    getMeasures().add(newItem);
   * 
* * * * Objects of the following type(s) are allowed in the list * {@link Measure } * * @return the measures */ public List getMeasures() { if (measures == null) { measures = new ArrayList(); } return this.measures; } /** * Gets the value of the localDimensions property. * * @return possible object is * {@link LocalDimensions } */ public LocalDimensions getLocalDimensions() { return localDimensions; } /** * Sets the value of the localDimensions property. * * @param value allowed object is * {@link LocalDimensions } */ public void setLocalDimensions(LocalDimensions value) { this.localDimensions = value; } /** * Gets the value of the sharedDimensions property. * * @return possible object is * {@link LogicalJoins } */ public LogicalJoins getSharedDimensions() { return sharedDimensions; } /** * Sets the value of the sharedDimensions property. * * @param value allowed object is * {@link LogicalJoins } */ public void setSharedDimensions(LogicalJoins value) { this.sharedDimensions = value; } /** * Gets the value of the sortAttributes property. * * @return possible object is * {@link SortAttributes } */ public SortAttributes getSortAttributes() { return sortAttributes; } /** * Sets the value of the sortAttributes property. * * @param value allowed object is * {@link SortAttributes } */ public void setSortAttributes(SortAttributes value) { this.sortAttributes = value; } /** * Gets the value of the filter property. * * @return possible object is * {@link String } */ public String getFilter() { return filter; } /** * Sets the value of the filter property. * * @param value allowed object is * {@link String } */ public void setFilter(String value) { this.filter = value; } /** * Gets the value of the layout property. * * @return possible object is * {@link Layout } */ public Layout getLayout() { return layout; } /** * Sets the value of the layout property. * * @param value allowed object is * {@link Layout } */ public void setLayout(Layout value) { this.layout = value; } /** * Gets the value of the outputName property. * * @return possible object is * {@link String } */ public String getOutputName() { return outputName; } /** * Sets the value of the outputName property. * * @param value allowed object is * {@link String } */ public void setOutputName(String value) { this.outputName = value; } /** * Gets the value of the filterExpressionLanguage property. * * @return possible object is * {@link ExpressionLanguage } */ public ExpressionLanguage getFilterExpressionLanguage() { return filterExpressionLanguage; } /** * Sets the value of the filterExpressionLanguage property. * * @param value allowed object is * {@link ExpressionLanguage } */ public void setFilterExpressionLanguage(ExpressionLanguage value) { this.filterExpressionLanguage = value; } /** * Gets the value of the ignoreMultipleOutputsForFilter property. * * @return possible object is * {@link Boolean } */ public Boolean isIgnoreMultipleOutputsForFilter() { return ignoreMultipleOutputsForFilter; } /** * Sets the value of the ignoreMultipleOutputsForFilter property. * * @param value allowed object is * {@link Boolean } */ public void setIgnoreMultipleOutputsForFilter(Boolean value) { this.ignoreMultipleOutputsForFilter = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy