com.microsoft.tfs.core.clients.versioncontrol.soapextensions
Class CheckinState

java.lang.Object
  extended by com.microsoft.tfs.util.TypesafeEnum
      extended by com.microsoft.tfs.core.clients.versioncontrol.soapextensions.CheckinState
All Implemented Interfaces:
java.lang.Comparable

public class CheckinState
extends com.microsoft.tfs.util.TypesafeEnum

Represents checkin state.

Since:
TEE-SDK-11.0
Thread-safety:
immutable

Field Summary
static CheckinState COMMITTED
          Checkin operation was commited.
static CheckinState FAILED
          CheckIn() did not throw an exception, but nothing was checked in (e.g.
static CheckinState PAGING
          Checkin is being paged up to the server.
static CheckinState UNKNOWN
          Default initial state.
 
Method Summary
static CheckinState fromInteger(int value)
          Returns the CheckinState for the specified integer value.
 
Methods inherited from class com.microsoft.tfs.util.TypesafeEnum
compareTo, equals, getValue, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

UNKNOWN

public static final CheckinState UNKNOWN
Default initial state.


PAGING

public static final CheckinState PAGING
Checkin is being paged up to the server.


COMMITTED

public static final CheckinState COMMITTED
Checkin operation was commited.


FAILED

public static final CheckinState FAILED
CheckIn() did not throw an exception, but nothing was checked in (e.g. all pending changes undone).

Method Detail

fromInteger

public static CheckinState fromInteger(int value)
Returns the CheckinState for the specified integer value.

Parameters:
value - The integer value.
Returns:
The CheckinState corresponding to this value, or null if none matched


© 2015 Microsoft. All rights reserved.