io.prestosql.sql.tree.LikePredicate Maven / Gradle / Ivy
/*
* 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.prestosql.sql.tree;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static java.util.Objects.requireNonNull;
public class LikePredicate
extends Expression
{
private final Expression value;
private final Expression pattern;
private final Optional escape;
public LikePredicate(Expression value, Expression pattern, Expression escape)
{
this(Optional.empty(), value, pattern, Optional.of(escape));
}
public LikePredicate(NodeLocation location, Expression value, Expression pattern, Optional escape)
{
this(Optional.of(location), value, pattern, escape);
}
public LikePredicate(Expression value, Expression pattern, Optional escape)
{
this(Optional.empty(), value, pattern, escape);
}
private LikePredicate(Optional location, Expression value, Expression pattern, Optional escape)
{
super(location);
requireNonNull(value, "value is null");
requireNonNull(pattern, "pattern is null");
requireNonNull(escape, "escape is null");
this.value = value;
this.pattern = pattern;
this.escape = escape;
}
public Expression getValue()
{
return value;
}
public Expression getPattern()
{
return pattern;
}
public Optional getEscape()
{
return escape;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitLikePredicate(this, context);
}
@Override
public List getChildren()
{
ImmutableList.Builder result = ImmutableList.builder()
.add(value)
.add(pattern);
escape.ifPresent(result::add);
return result.build();
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LikePredicate that = (LikePredicate) o;
return Objects.equals(value, that.value) &&
Objects.equals(pattern, that.pattern) &&
Objects.equals(escape, that.escape);
}
@Override
public int hashCode()
{
return Objects.hash(value, pattern, escape);
}
}