View Javadoc

1   package ch.busyboxes.agoo.model.enumeration;
2   
3   /**
4    * This enumeration states all possible watched file state
5    * 
6    * @author julien@busyboxes.ch
7    */
8   public enum WatchedFileState {
9   	
10  	/** Tells that the file has juste been inserted and is new */
11  	NEW,
12  
13  	/** Tells that this watched file is currently ok */
14  	OK,
15  	
16  	/** Tells that this watched file is corrupt according to the last check */
17  	CORRUPT,
18  	
19  	/** Tells that is watched file is missing according to the last check */
20  	MISSING
21  	
22  }