All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.moon.runner.core.DataNull Maven / Gradle / Ivy

package com.moon.runner.core;

/**
 * @author moonsky
 */
enum DataNull implements AsConst {
    NULL;


    @Override
    public boolean isNull() { return true; }

    @Override
    public boolean isObject() { return false; }

    @Override
    public String toString() { return "null"; }

    @Override
    public Object run(Object data) { return null; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy