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

io.deephaven.api.updateby.NullBehavior Maven / Gradle / Ivy

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.api.updateby;

/**
 * The action that should be taken when the previous value is {@code null}
 */
public enum NullBehavior {
    /**
     * In the case of Current - null, the null dominates so Column[i] - null = null
     */
    NullDominates,

    /**
     * In the case of Current - null, the current value dominates so Column[i] - null = Column[i]
     */
    ValueDominates,

    /**
     * In the case of Current - null, return zero so Column[i] - null = 0
     */
    ZeroDominates
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy