org.eolang.core.data.EONoData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eo-runtime Show documentation
Show all versions of eo-runtime Show documentation
org.eolang runtime library
The newest version!
package org.eolang.core.data;
/**
* Объект-заглушка, представляющий пустые данные
*/
public class EONoData extends EOData {
public EONoData() {
super("");
}
}