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

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

There is a newer version: 1.4.6
Show newest version
package org.snapscript.core;

public class Transient extends Value {
   
   private final Object object;
   private final Type type;
   
   public Transient(Object object) {
      this(object, null);
   }
   
   public Transient(Object object, Type type) {
      this.object = object;
      this.type = type;
   }
   
   @Override
   public Type getConstraint(){
      return type;
   }
   
   @Override
   public  T getValue(){
      return (T)object;
   }
   
   @Override
   public void setValue(Object value){
      throw new InternalStateException("Illegal modification of transient");
   } 
   
   @Override
   public String toString() {
      return String.valueOf(object);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy