com.github.leeonky.dal.ast.node.SchemaNode Maven / Gradle / Ivy
package com.github.leeonky.dal.ast.node;
import com.github.leeonky.dal.runtime.ConstructorViaSchema;
import com.github.leeonky.dal.runtime.RuntimeContextBuilder;
import com.github.leeonky.dal.runtime.RuntimeException;
public class SchemaNode extends DALNode {
private final String schema;
public SchemaNode(String schema) {
this.schema = schema;
}
public ConstructorViaSchema getValueConstructorViaSchema(RuntimeContextBuilder.DALRuntimeContext context) {
return context.searchValueConstructor(schema).orElseThrow(() ->
new RuntimeException("Schema '" + schema + "' not registered", getPositionBegin()));
}
@Override
public String inspect() {
return schema;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy