com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcalculation.QidColumn 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 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;
/**
* Java class for QidColumn complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="QidColumn">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="ID" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" />
* <attribute name="weight" type="{http://www.w3.org/2001/XMLSchema}double" />
* <attribute name="minLevel" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="maxLevel" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "QidColumn")
public class QidColumn {
/** The id. */
@XmlAttribute(name = "ID")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String id;
/** The weight. */
@XmlAttribute(name = "weight")
protected Double weight;
/** The min level. */
@XmlAttribute(name = "minLevel")
protected Integer minLevel;
/** The max level. */
@XmlAttribute(name = "maxLevel")
protected Integer maxLevel;
/**
* Gets the value of the id property.
*
* @return possible object is
* {@link String }
*/
public String getID() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value allowed object is
* {@link String }
*/
public void setID(String value) {
this.id = value;
}
/**
* Gets the value of the weight property.
*
* @return possible object is
* {@link Double }
*/
public Double getWeight() {
return weight;
}
/**
* Sets the value of the weight property.
*
* @param value allowed object is
* {@link Double }
*/
public void setWeight(Double value) {
this.weight = value;
}
/**
* Gets the value of the minLevel property.
*
* @return possible object is
* {@link Integer }
*/
public Integer getMinLevel() {
return minLevel;
}
/**
* Sets the value of the minLevel property.
*
* @param value allowed object is
* {@link Integer }
*/
public void setMinLevel(Integer value) {
this.minLevel = value;
}
/**
* Gets the value of the maxLevel property.
*
* @return possible object is
* {@link Integer }
*/
public Integer getMaxLevel() {
return maxLevel;
}
/**
* Sets the value of the maxLevel property.
*
* @param value allowed object is
* {@link Integer }
*/
public void setMaxLevel(Integer value) {
this.maxLevel = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy