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

org.snapscript.core.Null Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
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);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy