Package org.apache.maven.scm
Class ScmFile
- java.lang.Object
-
- org.apache.maven.scm.ScmFile
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ScmFile>
public class ScmFile extends java.lang.Object implements java.lang.Comparable<ScmFile>, java.io.Serializable
- Author:
- Trygve Laugstøl
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScmFile(java.lang.String path, ScmFileStatus status)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(ScmFile other)booleanequals(java.lang.Object other)java.lang.StringgetPath()Returns the relative path of the file.ScmFileStatusgetStatus()inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
ScmFile
public ScmFile(java.lang.String path, ScmFileStatus status)- Parameters:
path- The relative path of the file, should never start with anyFile.separator.status- The file status
-
-
Method Detail
-
getPath
public java.lang.String getPath()
Returns the relative path of the file.- Returns:
- the file path
-
getStatus
public ScmFileStatus getStatus()
- Returns:
- The file status
-
compareTo
public int compareTo(ScmFile other)
- Specified by:
compareToin interfacejava.lang.Comparable<ScmFile>
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-