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

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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;


/**
 * Parameterization for the graph action GET_SHORTEST_PATHS_ONE_TO_ALL
 * This action returns the shortest paths from the provided start vertex to all reachable vertices in the graph
 * also known as single-source shortest path (SSSP). The root of the tree is the start vertex.
 * All other vertices carry the shortest distance information.
 * The non-negative edge weights are read from the column provided in the edge table.
 * First output columns:
 * -key of the vertices table
 * -weightColumn
 * Second output columns:
 * -key of the edges table
 *
 *
 * Java class for GetShortestPathsParameterization complex type.
 *
 * The following schema fragment specifies the expected content contained within this class.
 *
 * 
 * <complexType name="GetShortestPathsParameterization">
 *   <complexContent>
 *     <extension base="{http://www.sap.com/ndb/DataModelGraph.ecore}GraphActionParameterization">
 *       <sequence>
 *         <choice>
 *           <element name="startVertex" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="startVertexParameter" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName"/>
 *         </choice>
 *         <choice minOccurs="0">
 *           <element name="inputWeightColumn" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName" minOccurs="0"/>
 *           <element name="inputWeightColumnParameter" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName"/>
 *         </choice>
 *         <choice minOccurs="0">
 *           <element name="direction" type="{http://www.sap.com/ndb/DataModelGraph.ecore}Direction" minOccurs="0"/>
 *           <element name="directionParameter" type="{http://www.sap.com/ndb/BaseModelBase.ecore}DbName"/>
 *         </choice>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetShortestPathsParameterization", propOrder = { "startVertex", "startVertexParameter", "inputWeightColumn", "inputWeightColumnParameter", "direction", "directionParameter" }) @XmlSeeAlso({ GetShortestPathParameterization.class }) public class GetShortestPathsParameterization extends GraphActionParameterization { /** The start vertex. */ protected String startVertex; /** The start vertex parameter. */ @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String startVertexParameter; /** The input weight column. */ @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String inputWeightColumn; /** The input weight column parameter. */ @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String inputWeightColumnParameter; /** The direction. */ @XmlSchemaType(name = "NMTOKEN") protected Direction direction; /** The direction parameter. */ @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String directionParameter; /** * Gets the value of the startVertex property. * * @return possible object is * {@link String } */ public String getStartVertex() { return startVertex; } /** * Sets the value of the startVertex property. * * @param value allowed object is * {@link String } */ public void setStartVertex(String value) { this.startVertex = value; } /** * Gets the value of the startVertexParameter property. * * @return possible object is * {@link String } */ public String getStartVertexParameter() { return startVertexParameter; } /** * Sets the value of the startVertexParameter property. * * @param value allowed object is * {@link String } */ public void setStartVertexParameter(String value) { this.startVertexParameter = value; } /** * Gets the value of the inputWeightColumn property. * * @return possible object is * {@link String } */ public String getInputWeightColumn() { return inputWeightColumn; } /** * Sets the value of the inputWeightColumn property. * * @param value allowed object is * {@link String } */ public void setInputWeightColumn(String value) { this.inputWeightColumn = value; } /** * Gets the value of the inputWeightColumnParameter property. * * @return possible object is * {@link String } */ public String getInputWeightColumnParameter() { return inputWeightColumnParameter; } /** * Sets the value of the inputWeightColumnParameter property. * * @param value allowed object is * {@link String } */ public void setInputWeightColumnParameter(String value) { this.inputWeightColumnParameter = value; } /** * Gets the value of the direction property. * * @return possible object is * {@link Direction } */ public Direction getDirection() { return direction; } /** * Sets the value of the direction property. * * @param value allowed object is * {@link Direction } */ public void setDirection(Direction value) { this.direction = value; } /** * Gets the value of the directionParameter property. * * @return possible object is * {@link String } */ public String getDirectionParameter() { return directionParameter; } /** * Sets the value of the directionParameter property. * * @param value allowed object is * {@link String } */ public void setDirectionParameter(String value) { this.directionParameter = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy