org.tigris.subversion.svnclientadapter
Class SVNScheduleKind

java.lang.Object
  extended by org.tigris.subversion.svnclientadapter.SVNScheduleKind

public class SVNScheduleKind
extends java.lang.Object

Schedule kind an entry can be in.

See Also:
ISVNInfo.getSchedule()

Field Summary
static SVNScheduleKind ADD
          Slated for addition
static SVNScheduleKind DELETE
          Slated for deletion
static SVNScheduleKind NORMAL
          exists, but uninteresting
static SVNScheduleKind REPLACE
          Slated for replacement (delete + add)
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 SVNScheduleKind fromInt(int scheduleKind)
          Returns the SVNScheduleKind corresponding to the given int representation.
static SVNScheduleKind fromString(java.lang.String scheduleKind)
          returns the ScheduleKind corresponding to the given string or null
 int hashCode()
           
 int toInt()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

NORMAL

public static final SVNScheduleKind NORMAL
exists, but uninteresting


ADD

public static final SVNScheduleKind ADD
Slated for addition


DELETE

public static final SVNScheduleKind DELETE
Slated for deletion


REPLACE

public static final SVNScheduleKind REPLACE
Slated for replacement (delete + add)

Method Detail

toInt

public int toInt()
Returns:
an integer value representation of the scheduleKind

fromInt

public SVNScheduleKind fromInt(int scheduleKind)
Returns the SVNScheduleKind corresponding to the given int representation. (As returned by toInt() method)

Parameters:
scheduleKind -
Returns:
SVNScheduleKind representing the int value

fromString

public static SVNScheduleKind fromString(java.lang.String scheduleKind)
returns the ScheduleKind corresponding to the given string or null

Parameters:
scheduleKind -
Returns:
SVNScheduleKind representing the supplied string value

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object