Interface DeviceCapability
-
- All Known Implementing Classes:
CSS
,DeviceRotation
,Images
,JavaScript
public interface DeviceCapability
TheDeviceCapability
interface specifies the capability of a mobile device as used by theDeviceGroup
.- Since:
- CQ 5.4.0
-
-
Field Summary
Fields Modifier and Type Field Description static DeviceCapability
CAPABILITY_CSS
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
static DeviceCapability
CAPABILITY_DEVICEROTATION
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
static DeviceCapability
CAPABILITY_IMAGES
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
static DeviceCapability
CAPABILITY_JAVASCRIPT
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Returns a description of this device capability.java.lang.String[]
getKeys()
Returns an array of WURFL database value keys that this capability is based on.java.lang.String
getName()
Return the name of this device capability.java.lang.String
getTitle()
Returns a human readable title of this device capability.
-
-
-
Field Detail
-
CAPABILITY_DEVICEROTATION
static final DeviceCapability CAPABILITY_DEVICEROTATION
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
-
CAPABILITY_CSS
static final DeviceCapability CAPABILITY_CSS
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
-
CAPABILITY_IMAGES
static final DeviceCapability CAPABILITY_IMAGES
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
-
CAPABILITY_JAVASCRIPT
static final DeviceCapability CAPABILITY_JAVASCRIPT
Deprecated.will be removed and privatized, as capabilities are now available viaDeviceMapper.getCapabilities()
-
-
Method Detail
-
getName
java.lang.String getName()
Return the name of this device capability.- Returns:
- A
String
representing the name of this device capability.
-
getTitle
java.lang.String getTitle()
Returns a human readable title of this device capability.- Returns:
- A
String
representing the title of this device capability.
-
getDescription
java.lang.String getDescription()
Returns a description of this device capability.- Returns:
- A
String
representing the description.
-
getKeys
java.lang.String[] getKeys()
Returns an array of WURFL database value keys that this capability is based on.- Returns:
- A
String
array representing the keys.
-
-