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

io.deepsense.neptune.clientlibrary.models.Parameter Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
/**
 * Copyright (c) 2016, CodiLime Inc.
 */

package io.deepsense.neptune.clientlibrary.models;

/**
 * Represents the set of user-defined variables passed to the job’s program
 */
public interface Parameter {
    /**
     *
     * @return This parameter name.
     */
    String getName();

    /**
     *
     * @return This parameter type.
     */
    ParameterType getType();

    /**
     *
     * @return This parameter value.
     */
    ParameterValue getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy