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

org.snapscript.studio.agent.runtime.RuntimeAttribute Maven / Gradle / Ivy

The newest version!
package org.snapscript.studio.agent.runtime;

public enum RuntimeAttribute {
   VERSION("version"),
   SCRIPT("script"),
   PID("pid"),
   HOST("host"),
   USER("user"),
   OS("os");

   public final String name;

   private RuntimeAttribute(String name) {
      this.name = name;
   }

   public String getValue() {
      return RuntimeState.getValue(name);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy