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

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

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
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.bimodelcube.Measure;
import com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelvariable.AbstractVariableMapping;
import com.codbex.kronos.parser.hdbcalculationview.ndb.datamodeltype.InternalExternalConversion;
import com.codbex.kronos.parser.hdbcalculationview.ndb.datamodeltype.SemanticType;
import com.codbex.kronos.parser.hdbcalculationview.ndb.repositorymodelresource.IDObjectWithDescription;


/**
 * Generic father object for the representations of column in the logical model e.g. Attributes and Measures
 *
 *
 * Java class for LogicalColumn complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="LogicalColumn">
 *   <complexContent>
 *     <extension base="{http://www.sap.com/ndb/RepositoryModelResource.ecore}IDObjectWithDescription">
 *       <sequence>
 *         <choice minOccurs="0">
 *           <element name="unitCurrencyAttribute" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}QualifiedAttributeReference"/>
 *           <element name="fixedCurrency" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Currency"/>
 *           <element name="fixedUnit" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Unit"/>
 *         </choice>
 *         <element name="externalLikeStructureName" type="{http://www.sap.com/ndb/RepositoryModelResource.ecore}FQName"/>
 *         <element name="externalLikeElementName" type="{http://www.sap.com/ndb/RepositoryModelResource.ecore}AlphanumericName"/>
 *         <element name="variableMapping" type="{http://www.sap.com/ndb/BiModelVariable.ecore}AbstractVariableMapping" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="internalExternalConversion" type="{http://www.sap.com/ndb/DataModelType.ecore}InternalExternalConversion" minOccurs="0"/>
 *         <element name="maskingExpression" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}Expression" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="key" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="infoObject" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="order" type="{http://www.sap.com/ndb/BaseModelBase.ecore}Order" />
 *       <attribute name="semanticType" type="{http://www.sap.com/ndb/DataModelType.ecore}SemanticType" />
 *       <attribute name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="replaceNull" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="replaceNullBy" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="displayFolder" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LogicalColumn", propOrder = { "unitCurrencyAttribute", "fixedCurrency", "fixedUnit", "externalLikeStructureName", "externalLikeElementName", "variableMapping", "internalExternalConversion", "maskingExpression" }) @XmlSeeAlso({ AbstractAttribute.class, Measure.class }) public abstract class LogicalColumn extends IDObjectWithDescription { /** The unit currency attribute. */ protected QualifiedAttributeReference unitCurrencyAttribute; /** The fixed currency. */ @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String fixedCurrency; /** The fixed unit. */ @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String fixedUnit; /** The external like structure name. */ @XmlElement(required = true) protected String externalLikeStructureName; /** The external like element name. */ @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String externalLikeElementName; /** The variable mapping. */ protected List variableMapping; /** The internal external conversion. */ protected InternalExternalConversion internalExternalConversion; /** The masking expression. */ protected String maskingExpression; /** The key. */ @XmlAttribute(name = "key") protected Boolean key; /** The hidden. */ @XmlAttribute(name = "hidden") protected Boolean hidden; /** The info object. */ @XmlAttribute(name = "infoObject") protected String infoObject; /** The order. */ @XmlAttribute(name = "order") protected Integer order; /** The semantic type. */ @XmlAttribute(name = "semanticType") protected SemanticType semanticType; /** The deprecated. */ @XmlAttribute(name = "deprecated") protected Boolean deprecated; /** The replace null. */ @XmlAttribute(name = "replaceNull") protected Boolean replaceNull; /** The replace null by. */ @XmlAttribute(name = "replaceNullBy") protected String replaceNullBy; /** The display folder. */ @XmlAttribute(name = "displayFolder") protected String displayFolder; /** * Gets the value of the unitCurrencyAttribute property. * * @return possible object is * {@link QualifiedAttributeReference } */ public QualifiedAttributeReference getUnitCurrencyAttribute() { return unitCurrencyAttribute; } /** * Sets the value of the unitCurrencyAttribute property. * * @param value allowed object is * {@link QualifiedAttributeReference } */ public void setUnitCurrencyAttribute(QualifiedAttributeReference value) { this.unitCurrencyAttribute = value; } /** * Gets the value of the fixedCurrency property. * * @return possible object is * {@link String } */ public String getFixedCurrency() { return fixedCurrency; } /** * Sets the value of the fixedCurrency property. * * @param value allowed object is * {@link String } */ public void setFixedCurrency(String value) { this.fixedCurrency = value; } /** * Gets the value of the fixedUnit property. * * @return possible object is * {@link String } */ public String getFixedUnit() { return fixedUnit; } /** * Sets the value of the fixedUnit property. * * @param value allowed object is * {@link String } */ public void setFixedUnit(String value) { this.fixedUnit = value; } /** * Gets the value of the externalLikeStructureName property. * * @return possible object is * {@link String } */ public String getExternalLikeStructureName() { return externalLikeStructureName; } /** * Sets the value of the externalLikeStructureName property. * * @param value allowed object is * {@link String } */ public void setExternalLikeStructureName(String value) { this.externalLikeStructureName = value; } /** * Gets the value of the externalLikeElementName property. * * @return possible object is * {@link String } */ public String getExternalLikeElementName() { return externalLikeElementName; } /** * Sets the value of the externalLikeElementName property. * * @param value allowed object is * {@link String } */ public void setExternalLikeElementName(String value) { this.externalLikeElementName = value; } /** * Gets the value of the variableMapping 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 variableMapping property. * * * For example, to add a new item, do as follows: *
   *    getVariableMapping().add(newItem);
   * 
* * * * Objects of the following type(s) are allowed in the list * {@link AbstractVariableMapping } * * @return the variable mapping */ public List getVariableMapping() { if (variableMapping == null) { variableMapping = new ArrayList(); } return this.variableMapping; } /** * Gets the value of the internalExternalConversion property. * * @return possible object is * {@link InternalExternalConversion } */ public InternalExternalConversion getInternalExternalConversion() { return internalExternalConversion; } /** * Sets the value of the internalExternalConversion property. * * @param value allowed object is * {@link InternalExternalConversion } */ public void setInternalExternalConversion(InternalExternalConversion value) { this.internalExternalConversion = value; } /** * Gets the value of the maskingExpression property. * * @return possible object is * {@link String } */ public String getMaskingExpression() { return maskingExpression; } /** * Sets the value of the maskingExpression property. * * @param value allowed object is * {@link String } */ public void setMaskingExpression(String value) { this.maskingExpression = value; } /** * Gets the value of the key property. * * @return possible object is * {@link Boolean } */ public Boolean isKey() { return key; } /** * Sets the value of the key property. * * @param value allowed object is * {@link Boolean } */ public void setKey(Boolean value) { this.key = value; } /** * Gets the value of the hidden property. * * @return possible object is * {@link Boolean } */ public Boolean isHidden() { return hidden; } /** * Sets the value of the hidden property. * * @param value allowed object is * {@link Boolean } */ public void setHidden(Boolean value) { this.hidden = value; } /** * Gets the value of the infoObject property. * * @return possible object is * {@link String } */ public String getInfoObject() { return infoObject; } /** * Sets the value of the infoObject property. * * @param value allowed object is * {@link String } */ public void setInfoObject(String value) { this.infoObject = value; } /** * Gets the value of the order property. * * @return possible object is * {@link Integer } */ public Integer getOrder() { return order; } /** * Sets the value of the order property. * * @param value allowed object is * {@link Integer } */ public void setOrder(Integer value) { this.order = value; } /** * Gets the value of the semanticType property. * * @return possible object is * {@link SemanticType } */ public SemanticType getSemanticType() { return semanticType; } /** * Sets the value of the semanticType property. * * @param value allowed object is * {@link SemanticType } */ public void setSemanticType(SemanticType value) { this.semanticType = value; } /** * Gets the value of the deprecated property. * * @return possible object is * {@link Boolean } */ public Boolean isDeprecated() { return deprecated; } /** * Sets the value of the deprecated property. * * @param value allowed object is * {@link Boolean } */ public void setDeprecated(Boolean value) { this.deprecated = value; } /** * Gets the value of the replaceNull property. * * @return possible object is * {@link Boolean } */ public Boolean isReplaceNull() { return replaceNull; } /** * Sets the value of the replaceNull property. * * @param value allowed object is * {@link Boolean } */ public void setReplaceNull(Boolean value) { this.replaceNull = value; } /** * Gets the value of the replaceNullBy property. * * @return possible object is * {@link String } */ public String getReplaceNullBy() { return replaceNullBy; } /** * Sets the value of the replaceNullBy property. * * @param value allowed object is * {@link String } */ public void setReplaceNullBy(String value) { this.replaceNullBy = value; } /** * Gets the value of the displayFolder property. * * @return possible object is * {@link String } */ public String getDisplayFolder() { return displayFolder; } /** * Sets the value of the displayFolder property. * * @param value allowed object is * {@link String } */ public void setDisplayFolder(String value) { this.displayFolder = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy