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

xyz.cofe.cxel.js.Undef Maven / Gradle / Ivy

package xyz.cofe.cxel.js;

/**
 * Неопределенный тип в js.
 * см Mozilla.
 */
public final class Undef {
    /**
     * Закрываем к чертям всякое наследование
     */
    private Undef(){}

    /**
     * Может существовать только один undef, Горец блин
     */
    public static final Undef instance = new Undef();

    @Override
    public String toString(){
        return "undefined";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy