
org.jsimpledb.parse.expr.MethodReferenceNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-parse Show documentation
Show all versions of jsimpledb-parse Show documentation
JSimpleDB classes for parsing Java expressions.
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.parse.expr;
import com.google.common.base.Preconditions;
/**
* {@link Node} representing a method reference.
*/
public abstract class MethodReferenceNode extends TypeInferringNode {
final String name;
/**
* Constructor.
*
* @param name method name
* @throws IllegalArgumentException if {@code name} is null
*/
protected MethodReferenceNode(String name) {
Preconditions.checkArgument(name != null, "null name");
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy