Class SVNScheduleKind
- java.lang.Object
-
- org.tigris.subversion.svnclientadapter.SVNScheduleKind
-
public class SVNScheduleKind extends java.lang.ObjectSchedule kind an entry can be in.- See Also:
ISVNInfo.getSchedule()
-
-
Field Summary
Fields Modifier and Type Field Description static SVNScheduleKindADDSlated for additionstatic SVNScheduleKindDELETESlated for deletionstatic SVNScheduleKindNORMALexists, but uninterestingstatic SVNScheduleKindREPLACESlated for replacement (delete + add)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)SVNScheduleKindfromInt(int scheduleKind)Returns the SVNScheduleKind corresponding to the given int representation.static SVNScheduleKindfromString(java.lang.String scheduleKind)returns the ScheduleKind corresponding to the given string or nullinthashCode()inttoInt()java.lang.StringtoString()
-
-
-
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:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-