Package org.eclipse.core.filebuffers
Class LocationKind
- java.lang.Object
-
- org.eclipse.core.filebuffers.LocationKind
-
public final class LocationKind extends Object
Type-safe enum of the available location kinds.- Since:
- 3.3
- Restriction:
- This class is not intended to be instantiated by clients.
-
-
Field Summary
Fields Modifier and Type Field Description static LocationKind
IFILE
The corresponding argument is the full path of anIFile
.static LocationKind
LOCATION
The corresponding argument is a location in a file system.static LocationKind
NORMALIZE
Tells to normalize the corresponding argument according toFileBuffers.normalizeLocation(IPath)
.
-
-
-
Field Detail
-
LOCATION
public static final LocationKind LOCATION
The corresponding argument is a location in a file system.Note: File buffers that are connected using a file store will not be found.
-
IFILE
public static final LocationKind IFILE
The corresponding argument is the full path of anIFile
.- See Also:
IFile.getFullPath()
-
NORMALIZE
public static final LocationKind NORMALIZE
Tells to normalize the corresponding argument according toFileBuffers.normalizeLocation(IPath)
.Note:: If the normalized path is not in the workspace then a file buffer that might be connected using a file store will not be found.
-
-