com.microsoft.azure.ExpressionEvaluationDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-client-runtime Show documentation
Show all versions of azure-client-runtime Show documentation
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
+ '}';
}
}