| Package | Description |
|---|---|
| oracle.ide.config |
Contains classes encapsulating JDevelopers's environment settings.
|
| oracle.ide.model |
Contains interfaces and classes implementing JDeveloper's data model.
|
| oracle.jdeveloper.vcs.util |
Contains assorted stateless utilities for version control system integraton.
|
| Modifier and Type | Method and Description |
|---|---|
static ContentType |
DocumentExtensions.findContentTypeFromExtension(java.lang.String ext)
Deprecated.
|
static ContentType |
DocumentExtensions.findRecognizerContentType(java.lang.String ext)
Deprecated.
|
static ContentType |
FileTypesRecognizer.getContentTypeForExtension(java.lang.String extension)
Returns the
ContentType associated with the given extension. |
static ContentType |
FileTypesRecognizer.getNonNullContentTypeForExtension(java.lang.String extension)
Returns the
ContentType associated with the given extension. |
| Modifier and Type | Method and Description |
|---|---|
static void |
FileTypesRecognizer.mapCustomExtensionToContentType(java.lang.String extension, ContentType contentType)
Maps the given
extension, which is a file extension, to the given ContentType. |
| Modifier and Type | Field and Description |
|---|---|
static ContentType |
ContentType.BINARY
BINARY identifies file extensions registered with a binary content type. |
static ContentType |
ContentType.TEXT
TEXT identifies file extensions registered with a textual content type. |
| Modifier and Type | Method and Description |
|---|---|
static ContentType |
Recognizer.getContentTypeForExtension(java.lang.String extension)
Deprecated.
|
ContentType |
RecognizersHook.ExtensionToContentType.Content.toContentType() |
static ContentType |
ContentType.valueOf(java.lang.String name) |
static ContentType[] |
ContentType.values() |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Map<java.io.File,ContentType> |
Recognizer.getDeclarativeExtensionToContentTypeMap() |
| Modifier and Type | Method and Description |
|---|---|
static void |
Recognizer.mapExtensionToContentType(java.lang.String extension, ContentType contentType)
Deprecated.
replaced by declarative registration through a node-recognizers-hook/url-recognizer/extension-to-content-type trigger hook.
|
| Modifier and Type | Method and Description |
|---|---|
static ContentType |
VCSFileSystemUtils.getContentType(java.lang.String extension)
Gets the
ContentType for the given extension. |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Map<ContentType,java.util.Collection<java.net.URL>> |
VCSFileSystemUtils.organizeURLsByContentType(java.net.URL[] urls)
Organizes the given URLs by their content type.
|
| Modifier and Type | Method and Description |
|---|---|
static java.net.URL[] |
VCSFileSystemUtils.getContentTypeURLs(java.net.URL[] urls, ContentType contentType)
Gets the URLs, of those supplied, which have the given content type associated in the IDE.
|
static void |
VCSFileSystemUtils.registerFileType(java.lang.String extension, ContentType contentType)
Registers a default file type against the given extension in the IDE.
|