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

tech.ytsaurus.ysontree.YTreeIntegerNode Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.ysontree;

public interface YTreeIntegerNode extends YTreeScalarNode {
    boolean isSigned();

    long getLong();

    /**
     * Set signed long value.
     */
    long setLong(long value);

    /**
     * Set unsigned long value.
     */
    long setUnsignedLong(long value);

    default int getInt() {
        return (int) getLong();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy