com.oracle.truffle.regex.tregex.matchers.EmptyMatcherNodeGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
// CheckStyle: start generated
package com.oracle.truffle.regex.tregex.matchers;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.nodes.NodeCost;
@GeneratedBy(EmptyMatcher.class)
public final class EmptyMatcherNodeGen extends EmptyMatcher {
private EmptyMatcherNodeGen() {
}
@Override
public boolean execute(int arg0Value) {
return match(arg0Value);
}
@Override
public NodeCost getCost() {
return NodeCost.MONOMORPHIC;
}
public static EmptyMatcher create() {
return new EmptyMatcherNodeGen();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy