View Javadoc
1   package locklib.mutex;
2   
3   /**
4    * Types of locks for mutex locking.
5    */
6   public enum MutexLockType {
7   	/**
8   	 * Target is locked.
9   	 */
10  	LOCK
11  }