com.arcadedb.query.sql.executor.InfoExecutionPlan Maven / Gradle / Ivy
/*
* Copyright © 2021-present Arcade Data Ltd ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-FileCopyrightText: 2021-present Arcade Data Ltd ([email protected])
* SPDX-License-Identifier: Apache-2.0
*/
package com.arcadedb.query.sql.executor;
import java.util.*;
/**
* Created by luigidellaquila on 19/12/16.
*/
public class InfoExecutionPlan implements ExecutionPlan {
List steps = new ArrayList<>();
String prettyPrint;
String type;
String javaType;
Integer cost;
String stmText;
@Override
public List getSteps() {
return steps;
}
@Override
public String prettyPrint(final int depth, final int indent) {
return prettyPrint;
}
@Override
public Result toResult() {
return null;
}
public void setSteps(final List steps) {
this.steps = steps;
}
public String getPrettyPrint() {
return prettyPrint;
}
public void setPrettyPrint(final String prettyPrint) {
this.prettyPrint = prettyPrint;
}
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
public String getJavaType() {
return javaType;
}
public void setJavaType(final String javaType) {
this.javaType = javaType;
}
public Integer getCost() {
return cost;
}
public void setCost(final Integer cost) {
this.cost = cost;
}
public String getStmText() {
return stmText;
}
public void setStmText(final String stmText) {
this.stmText = stmText;
}
@Override
public String toString() {
return prettyPrint;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy