Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.
*/
package io.trino.sql.tree;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;
public class WindowSpecification
extends Node
implements Window
{
private final Optional existingWindowName;
private final List partitionBy;
private final Optional orderBy;
private final Optional frame;
public WindowSpecification(Optional existingWindowName, List partitionBy, Optional orderBy, Optional frame)
{
this(Optional.empty(), existingWindowName, partitionBy, orderBy, frame);
}
public WindowSpecification(NodeLocation location, Optional existingWindowName, List partitionBy, Optional orderBy, Optional frame)
{
this(Optional.of(location), existingWindowName, partitionBy, orderBy, frame);
}
private WindowSpecification(Optional location, Optional existingWindowName, List partitionBy, Optional orderBy, Optional frame)
{
super(location);
this.existingWindowName = requireNonNull(existingWindowName, "existingWindowName is null");
this.partitionBy = requireNonNull(partitionBy, "partitionBy is null");
this.orderBy = requireNonNull(orderBy, "orderBy is null");
this.frame = requireNonNull(frame, "frame is null");
}
public Optional getExistingWindowName()
{
return existingWindowName;
}
public List getPartitionBy()
{
return partitionBy;
}
public Optional getOrderBy()
{
return orderBy;
}
public Optional getFrame()
{
return frame;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitWindowSpecification(this, context);
}
@Override
public List getChildren()
{
ImmutableList.Builder nodes = ImmutableList.builder();
existingWindowName.ifPresent(nodes::add);
nodes.addAll(partitionBy);
orderBy.ifPresent(nodes::add);
frame.ifPresent(nodes::add);
return nodes.build();
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if ((obj == null) || (getClass() != obj.getClass())) {
return false;
}
WindowSpecification o = (WindowSpecification) obj;
return Objects.equals(existingWindowName, o.existingWindowName) &&
Objects.equals(partitionBy, o.partitionBy) &&
Objects.equals(orderBy, o.orderBy) &&
Objects.equals(frame, o.frame);
}
@Override
public int hashCode()
{
return Objects.hash(existingWindowName, partitionBy, orderBy, frame);
}
@Override
public String toString()
{
return toStringHelper(this)
.add("existingWindowName", existingWindowName)
.add("partitionBy", partitionBy)
.add("orderBy", orderBy)
.add("frame", frame)
.toString();
}
@Override
public boolean shallowEquals(Node other)
{
return sameClass(this, other);
}
}