View Javadoc

1   package org.indi.server;
2   
3   /**
4    * An state class defining what to observe by an observer. Just changes of the
5    * value or just changed of the state property or changes of both
6    * 
7    * @author Dirk Hünniger
8    */
9   public enum ObserverState {
10      All, State, Value
11  }