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

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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;

import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.CycleHandling;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.HierarchyJoinProperties;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.OrphanedNodesHandling;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.RootNodeVisibility;
import com.codbex.kronos.parser.hdbcalculationview.ndb.basemodelbase.UnassignedMemberProperties;
import com.codbex.kronos.parser.hdbcalculationview.ndb.repositorymodelresource.IDObjectWithDescription;


/**
 * Java class for Hierarchy complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="Hierarchy">
 *   <complexContent>
 *     <extension base="{http://www.sap.com/ndb/RepositoryModelResource.ecore}IDObjectWithDescription">
 *       <sequence>
 *         <element name="joinProperties" type="{http://www.sap.com/ndb/BaseModelBase.ecore}HierarchyJoinProperties" minOccurs="0"/>
 *         <element name="unassignedMemberProperties" type="{http://www.sap.com/ndb/BaseModelBase.ecore}UnassignedMemberProperties" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="withRootNode" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="rootNodeVisibility" type="{http://www.sap.com/ndb/BaseModelBase.ecore}RootNodeVisibility" />
 *       <attribute name="aggregateAllNodes" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="defaultMember" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DefaultMember" />
 *       <attribute name="multipleParents" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="orphanedNodesHandling" type="{http://www.sap.com/ndb/BaseModelBase.ecore}OrphanedNodesHandling" />
 *       <attribute name="cycleHandling" type="{http://www.sap.com/ndb/BaseModelBase.ecore}CycleHandling" />
 *       <attribute name="cacheEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="emptyValueIsNull" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Hierarchy", propOrder = { "joinProperties", "unassignedMemberProperties" }) @XmlSeeAlso({ ParentChildHierarchy.class, ExternalHierarchy.class, LeveledHierarchy.class }) public abstract class Hierarchy extends IDObjectWithDescription { /** The join properties. */ protected HierarchyJoinProperties joinProperties; /** The unassigned member properties. */ protected UnassignedMemberProperties unassignedMemberProperties; /** The with root node. */ @XmlAttribute(name = "withRootNode") protected Boolean withRootNode; /** The root node visibility. */ @XmlAttribute(name = "rootNodeVisibility") protected RootNodeVisibility rootNodeVisibility; /** The aggregate all nodes. */ @XmlAttribute(name = "aggregateAllNodes") protected Boolean aggregateAllNodes; /** The default member. */ @XmlAttribute(name = "defaultMember") protected String defaultMember; /** The multiple parents. */ @XmlAttribute(name = "multipleParents") protected Boolean multipleParents; /** The orphaned nodes handling. */ @XmlAttribute(name = "orphanedNodesHandling") protected OrphanedNodesHandling orphanedNodesHandling; /** The cycle handling. */ @XmlAttribute(name = "cycleHandling") protected CycleHandling cycleHandling; /** The cache enabled. */ @XmlAttribute(name = "cacheEnabled") protected Boolean cacheEnabled; /** The empty value is null. */ @XmlAttribute(name = "emptyValueIsNull") protected Boolean emptyValueIsNull; /** * Gets the value of the joinProperties property. * * @return possible object is * {@link HierarchyJoinProperties } */ public HierarchyJoinProperties getJoinProperties() { return joinProperties; } /** * Sets the value of the joinProperties property. * * @param value allowed object is * {@link HierarchyJoinProperties } */ public void setJoinProperties(HierarchyJoinProperties value) { this.joinProperties = value; } /** * Gets the value of the unassignedMemberProperties property. * * @return possible object is * {@link UnassignedMemberProperties } */ public UnassignedMemberProperties getUnassignedMemberProperties() { return unassignedMemberProperties; } /** * Sets the value of the unassignedMemberProperties property. * * @param value allowed object is * {@link UnassignedMemberProperties } */ public void setUnassignedMemberProperties(UnassignedMemberProperties value) { this.unassignedMemberProperties = value; } /** * Gets the value of the withRootNode property. * * @return possible object is * {@link Boolean } */ public Boolean isWithRootNode() { return withRootNode; } /** * Sets the value of the withRootNode property. * * @param value allowed object is * {@link Boolean } */ public void setWithRootNode(Boolean value) { this.withRootNode = value; } /** * Gets the value of the rootNodeVisibility property. * * @return possible object is * {@link RootNodeVisibility } */ public RootNodeVisibility getRootNodeVisibility() { return rootNodeVisibility; } /** * Sets the value of the rootNodeVisibility property. * * @param value allowed object is * {@link RootNodeVisibility } */ public void setRootNodeVisibility(RootNodeVisibility value) { this.rootNodeVisibility = value; } /** * Gets the value of the aggregateAllNodes property. * * @return possible object is * {@link Boolean } */ public Boolean isAggregateAllNodes() { return aggregateAllNodes; } /** * Sets the value of the aggregateAllNodes property. * * @param value allowed object is * {@link Boolean } */ public void setAggregateAllNodes(Boolean value) { this.aggregateAllNodes = value; } /** * Gets the value of the defaultMember property. * * @return possible object is * {@link String } */ public String getDefaultMember() { return defaultMember; } /** * Sets the value of the defaultMember property. * * @param value allowed object is * {@link String } */ public void setDefaultMember(String value) { this.defaultMember = value; } /** * Gets the value of the multipleParents property. * * @return possible object is * {@link Boolean } */ public Boolean isMultipleParents() { return multipleParents; } /** * Sets the value of the multipleParents property. * * @param value allowed object is * {@link Boolean } */ public void setMultipleParents(Boolean value) { this.multipleParents = value; } /** * Gets the value of the orphanedNodesHandling property. * * @return possible object is * {@link OrphanedNodesHandling } */ public OrphanedNodesHandling getOrphanedNodesHandling() { return orphanedNodesHandling; } /** * Sets the value of the orphanedNodesHandling property. * * @param value allowed object is * {@link OrphanedNodesHandling } */ public void setOrphanedNodesHandling(OrphanedNodesHandling value) { this.orphanedNodesHandling = value; } /** * Gets the value of the cycleHandling property. * * @return possible object is * {@link CycleHandling } */ public CycleHandling getCycleHandling() { return cycleHandling; } /** * Sets the value of the cycleHandling property. * * @param value allowed object is * {@link CycleHandling } */ public void setCycleHandling(CycleHandling value) { this.cycleHandling = value; } /** * Gets the value of the cacheEnabled property. * * @return possible object is * {@link Boolean } */ public Boolean isCacheEnabled() { return cacheEnabled; } /** * Sets the value of the cacheEnabled property. * * @param value allowed object is * {@link Boolean } */ public void setCacheEnabled(Boolean value) { this.cacheEnabled = value; } /** * Gets the value of the emptyValueIsNull property. * * @return possible object is * {@link Boolean } */ public Boolean isEmptyValueIsNull() { return emptyValueIsNull; } /** * Sets the value of the emptyValueIsNull property. * * @param value allowed object is * {@link Boolean } */ public void setEmptyValueIsNull(Boolean value) { this.emptyValueIsNull = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy