com.vmware.dcm.compiler.ir.IsNullPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dcm Show documentation
Show all versions of dcm Show documentation
Library for building declarative cluster managers. Please refer to the README at github.com/vmware/declarative-cluster-management/ for instructions on setting up solvers before use.
/*
* Copyright 2018-2020 VMware, Inc. All Rights Reserved.
*
* SPDX-License-Identifier: BSD-2
*/
package com.vmware.dcm.compiler.ir;
public class IsNullPredicate extends Expr {
private final Expr argument;
public IsNullPredicate(final Expr argument) {
this.argument = argument;
}
public Expr getArgument() {
return argument;
}
@Override
public String toString() {
return "IsNull{" +
"argument=" + argument +
'}';
}
@Override
T acceptVisitor(final IRVisitor visitor, final C context) {
return visitor.visitIsNullPredicate(this, context);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy