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 SVNFileType
DIRECTORY
static SVNFileType
FILE
static SVNFileType
NONE
static SVNFileType
SYMLINK
static SVNFileType
UNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
equals(SVNFileType type, SVNNodeKind nodeKind)
int
getID()
static SVNNodeKind
getNodeKind(SVNFileType type)
static SVNFileType
getType(java.io.File file)
boolean
isFile()
static boolean
isSymlinkSupportEnabled()
static void
setSymlinkSupportEnabled(boolean enabled)
java.lang.String
toString()
-
-
-
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:
toString
in 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)
-
-