tech.ytsaurus.ysontree.YTreeIntegerNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yson-tree Show documentation
Show all versions of yson-tree Show documentation
YTsaurus yson tree library
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();
}
}