Uses of Class
org.egothor.lock.LockType

Packages that use LockType
org.egothor.lock   
org.egothor.lock.server   
 

Uses of LockType in org.egothor.lock
 

Methods in org.egothor.lock that return LockType
static LockType LockType.getInstance(int ordinal)
           
 LockType LockRequest.getLockType()
           
static LockType LockType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LockType[] LockType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in org.egothor.lock with parameters of type LockType
LockRequest(LockType lockType, LockAction lockAction, long lockId, java.lang.String location, long periodOfTime, long indexConstPeriodOfTime, int timeOut)
           
 

Uses of LockType in org.egothor.lock.server
 

Fields in org.egothor.lock.server declared as LockType
 LockType LockServerThread.LockServerRecord.LockEntry.lockType
           
 LockType LockServerThread.LockServerRecord.ReservationEntry.lockType
           
 

Methods in org.egothor.lock.server with parameters of type LockType
 boolean LockServerThread.LockServerRecord.addLockEntry(long lockId, LockType lockType, long expirationTime)
           
 LockResult LockServerThread.LockServerRecord.addReservationEntry(LockType lockType, long reservationExpirationTime, boolean addFirst)
           
 int LockServerThread.LockServerRecord.indexOfReservation(long reservationId, LockType lockType)
           
 

Constructors in org.egothor.lock.server with parameters of type LockType
LockServerThread.LockServerRecord.LockEntry(long lockId, LockType lockType, long expirationTime)
           
LockServerThread.LockServerRecord.ReservationEntry(long reservationId, LockType lockType)