| Package | Description | 
|---|---|
| oracle.jdeveloper.deploy.meta | 
| Modifier and Type | Method and Description | 
|---|---|
PlatformVersion | 
Platform.getVersion()  | 
| Modifier and Type | Method and Description | 
|---|---|
static Platform | 
PlatformRegistry.getPlatform(PlatformType type,
           PlatformVersion version)
Get a platform matching the type and version supplied. 
 | 
static Platform | 
PlatformRegistry.getPlatform(PlatformType type,
           PlatformVersion version,
           PlatformRegistry.VersionMatch matchType)
Returns the best matching Platform depending on matchType. 
 | 
boolean | 
PlatformVersion.isEqualOrGreaterThan(PlatformVersion other)
Similar to the expression  
this.compareTo(other) >= 0 except that the shorter
 version is not padded with zeros before comparision, so "10.1.0" is greater than or equal to "10.1". | 
boolean | 
PlatformVersion.isEqualTo(PlatformVersion other)
Same as  
Version.equals(java.lang.Object) | 
boolean | 
PlatformVersion.isGreaterThan(PlatformVersion other)
Similar to the expression  
this.compareTo(other) > 0 except that the shorter
 version is not padded with zeros before comparision, so "10.1.0" is greater than "10.1". | 
boolean | 
PlatformVersion.isLessThan(PlatformVersion other)
Similar to the expression  
this.compareTo(other) < 0 except that the shorter
 version is not padded with zeros before comparision, so "10.1" is less than "10.1.0". | 
| Constructor and Description | 
|---|
Platform(PlatformType type,
        PlatformVersion version)  | 
Platform(PlatformType type,
        PlatformVersion version,
        java.lang.String longLabel,
        java.lang.String shortLabel)  | 
Platform(PlatformType type,
        PlatformVersion version,
        java.lang.String longLabel,
        java.lang.String shortLabel,
        javax.swing.Icon icon)  | 
PlatformComponent(PlatformType type,
                 PlatformVersion version,
                 java.lang.Object component)
Create a new PlatformComponent. 
 |