io.edurt.datacap.parser.tree.Format 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.edurt.datacap.parser.tree;
import com.google.common.collect.ImmutableList;
import io.edurt.datacap.parser.ast.AstVisitor;
import io.edurt.datacap.parser.node.Node;
import io.edurt.datacap.parser.node.NodeLocation;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;
public class Format
extends Expression
{
private final List arguments;
public Format(List arguments)
{
this(Optional.empty(), arguments);
}
public Format(NodeLocation location, List arguments)
{
this(Optional.of(location), arguments);
}
private Format(Optional location, List arguments)
{
super(location);
requireNonNull(arguments, "arguments is null");
checkArgument(arguments.size() >= 2, "must have at least two arguments");
this.arguments = ImmutableList.copyOf(arguments);
}
public List getArguments()
{
return arguments;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitFormat(this, context);
}
@Override
public List extends Node> getChildren()
{
return arguments;
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
Format o = (Format) obj;
return Objects.equals(arguments, o.arguments);
}
@Override
public int hashCode()
{
return Objects.hash(arguments);
}
@Override
public boolean shallowEquals(Node other)
{
return sameClass(this, other);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy