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

com.codbex.kronos.parser.hdbcalculationview.ndb.bimodelcalculation.AnonymizeParameterization 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.math.BigInteger;
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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Java class for AnonymizeParameterization complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="AnonymizeParameterization">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="seqColumn" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName"/>
 *         <sequence>
 *           <element name="k" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *           <element name="loss" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *           <element name="qidColumn" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}QidColumn" maxOccurs="unbounded"/>
 *           <element name="qidColumnHierarchy" type="{http://www.sap.com/ndb/BiModelCalculation.ecore}QidColumnHierarchy" maxOccurs="unbounded"/>
 *         </sequence>
 *         <sequence>
 *           <element name="epsilon" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *           <element name="sensitivity" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *           <element name="noisedColumn" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName"/>
 *         </sequence>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnonymizeParameterization", propOrder = { "seqColumn", "k", "loss", "qidColumn", "qidColumnHierarchy", "epsilon", "sensitivity", "noisedColumn" }) public class AnonymizeParameterization { /** The seq column. */ @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String seqColumn; /** The k. */ @XmlElement(required = true) protected BigInteger k; /** The loss. */ protected double loss; /** The qid column. */ @XmlElement(required = true) protected List qidColumn; /** The qid column hierarchy. */ @XmlElement(required = true) protected List qidColumnHierarchy; /** The epsilon. */ protected float epsilon; /** The sensitivity. */ protected float sensitivity; /** The noised column. */ @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String noisedColumn; /** * Gets the value of the seqColumn property. * * @return possible object is * {@link String } */ public String getSeqColumn() { return seqColumn; } /** * Sets the value of the seqColumn property. * * @param value allowed object is * {@link String } */ public void setSeqColumn(String value) { this.seqColumn = value; } /** * Gets the value of the k property. * * @return possible object is * {@link BigInteger } */ public BigInteger getK() { return k; } /** * Sets the value of the k property. * * @param value allowed object is * {@link BigInteger } */ public void setK(BigInteger value) { this.k = value; } /** * Gets the value of the loss property. * * @return the loss */ public double getLoss() { return loss; } /** * Sets the value of the loss property. * * @param value the new loss */ public void setLoss(double value) { this.loss = value; } /** * Gets the value of the qidColumn 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 qidColumn property. * * * For example, to add a new item, do as follows: *
   *    getQidColumn().add(newItem);
   * 
* * * * Objects of the following type(s) are allowed in the list * {@link QidColumn } * * @return the qid column */ public List getQidColumn() { if (qidColumn == null) { qidColumn = new ArrayList(); } return this.qidColumn; } /** * Gets the value of the qidColumnHierarchy 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 qidColumnHierarchy property. * * * For example, to add a new item, do as follows: *
   *    getQidColumnHierarchy().add(newItem);
   * 
* * * * Objects of the following type(s) are allowed in the list * {@link QidColumnHierarchy } * * @return the qid column hierarchy */ public List getQidColumnHierarchy() { if (qidColumnHierarchy == null) { qidColumnHierarchy = new ArrayList(); } return this.qidColumnHierarchy; } /** * Gets the value of the epsilon property. * * @return the epsilon */ public float getEpsilon() { return epsilon; } /** * Sets the value of the epsilon property. * * @param value the new epsilon */ public void setEpsilon(float value) { this.epsilon = value; } /** * Gets the value of the sensitivity property. * * @return the sensitivity */ public float getSensitivity() { return sensitivity; } /** * Sets the value of the sensitivity property. * * @param value the new sensitivity */ public void setSensitivity(float value) { this.sensitivity = value; } /** * Gets the value of the noisedColumn property. * * @return possible object is * {@link String } */ public String getNoisedColumn() { return noisedColumn; } /** * Sets the value of the noisedColumn property. * * @param value allowed object is * {@link String } */ public void setNoisedColumn(String value) { this.noisedColumn = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy