Class SVNFileType
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc.SVNFileType
-
public class SVNFileType extends java.lang.Object- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Field Summary
Fields Modifier and Type Field Description static SVNFileTypeDIRECTORYstatic SVNFileTypeFILEstatic SVNFileTypeNONEstatic SVNFileTypeSYMLINKstatic SVNFileTypeUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleanequals(SVNFileType type, SVNNodeKind nodeKind)intgetID()static SVNNodeKindgetNodeKind(SVNFileType type)static SVNFileTypegetType(java.io.File file)booleanisFile()static booleanisSymlinkSupportEnabled()static voidsetSymlinkSupportEnabled(boolean enabled)java.lang.StringtoString()
-
-
-
Field Detail
-
UNKNOWN
public static final SVNFileType UNKNOWN
-
NONE
public static final SVNFileType NONE
-
FILE
public static final SVNFileType FILE
-
SYMLINK
public static final SVNFileType SYMLINK
-
DIRECTORY
public static final SVNFileType DIRECTORY
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
setSymlinkSupportEnabled
public static void setSymlinkSupportEnabled(boolean enabled)
-
isSymlinkSupportEnabled
public static boolean isSymlinkSupportEnabled()
-
getType
public static SVNFileType getType(java.io.File file)
-
equals
public static boolean equals(SVNFileType type, SVNNodeKind nodeKind)
-
getID
public int getID()
-
isFile
public boolean isFile()
-
getNodeKind
public static SVNNodeKind getNodeKind(SVNFileType type)
-
-