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

com.microsoft.azure.ExpressionEvaluationDetails Maven / Gradle / Ivy

Go to download

This package contains the basic runtime for AutoRest generated Azure Java clients.

The newest version!
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */

package com.microsoft.azure;

import java.util.List;

public class ExpressionEvaluationDetails {

    private String expression;

    private String expressionValue;

    private String operator;

    private String path;

    private String result;

    private List targetValue;

    public String getExpression() {
        return expression;
    }

    public String getExpressionValue() {
        return expressionValue;
    }

    public String getOperator() {
        return operator;
    }

    public String getPath() {
        return path;
    }

    public String getResult() {
        return result;
    }

    public List getTargetValue() {
        return targetValue;
    }

    @Override
    public String toString() {
        return "ExpressionEvaluationDetails{"
                + "expression='" + expression + '\''
                + ", expressionValue='" + expressionValue + '\''
                + ", operator='" + operator + '\''
                + ", path='" + path + '\''
                + ", result='" + result + '\''
                + ", targetValue=" + targetValue
                + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy