tech.ytsaurus.ysontree.YTreeStringNode 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 YTreeStringNode extends YTreeScalarNode {
String getValue();
String setValue(String value);
byte[] getBytes();
byte[] setBytes(byte[] bytes);
}