Class SVNScheduleKind
- java.lang.Object
-
- 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
Fields Modifier and Type Field Description static SVNScheduleKind
ADD
Slated for additionstatic SVNScheduleKind
DELETE
Slated for deletionstatic SVNScheduleKind
NORMAL
exists, but uninterestingstatic SVNScheduleKind
REPLACE
Slated for replacement (delete + add)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 nullint
hashCode()
int
toInt()
java.lang.String
toString()
-
-
-
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 bytoInt()
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 classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-