tech.ytsaurus.ysontree.YTreeScalarNode 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;
import javax.annotation.Nonnull;
public interface YTreeScalarNode extends YTreeNode {
@Nonnull
V getBoxedValue();
}