RLPark 1.0.0
Reinforcement Learning Framework in Java

Monitor.java

Go to the documentation of this file.
00001 package zephyr.plugin.core.api.monitoring.annotations;
00002 
00003 import java.lang.annotation.ElementType;
00004 import java.lang.annotation.Retention;
00005 import java.lang.annotation.RetentionPolicy;
00006 import java.lang.annotation.Target;
00007 
00008 @Retention(RetentionPolicy.RUNTIME)
00009 @Target({ ElementType.FIELD, ElementType.TYPE })
00010 public @interface Monitor {
00011   String label() default "";
00012 
00013   String id() default "";
00014 
00015   boolean emptyLabel() default false;
00016 
00017   int level() default 0;
00018 
00019   String[] wrappers() default {};
00020 
00021   boolean arrayDecoration() default true;
00022 
00023   boolean advertize() default true;
00024 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark