org.snapscript.core.Null Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.core;
public class Null extends Value {
public Null() {
super();
}
@Override
public T getValue(){
return null;
}
@Override
public void setValue(Object value){
throw new InternalStateException("Illegal modification of null");
}
@Override
public String toString() {
return String.valueOf(null);
}
}