sealed class HitResult
(source)
Represents all the different supported types of data that can be found from long clicking an element.
class AUDIO : HitResult
If the HTML element was of type 'HTMLAudioElement'. |
|
class EMAIL : HitResult
The type used if the URI is prepended with 'mailto:'. |
|
class GEO : HitResult
The type used if the URI is prepended with 'geo:'. |
|
class IMAGE : HitResult
If the HTML element was of type 'HTMLImageElement'. |
|
class IMAGE_SRC : HitResult
If the HTML element was of type 'HTMLImageElement' and contained a URI. |
|
class PHONE : HitResult
The type used if the URI is prepended with 'tel:'. |
|
class UNKNOWN : HitResult
Default type if we're unable to match the type to anything. It may or may not have a src. |
|
class VIDEO : HitResult
If the HTML element was of type 'HTMLVideoElement'. |
val src: String |
class AUDIO : HitResult
If the HTML element was of type 'HTMLAudioElement'. |
|
class EMAIL : HitResult
The type used if the URI is prepended with 'mailto:'. |
|
class GEO : HitResult
The type used if the URI is prepended with 'geo:'. |
|
class IMAGE : HitResult
If the HTML element was of type 'HTMLImageElement'. |
|
class IMAGE_SRC : HitResult
If the HTML element was of type 'HTMLImageElement' and contained a URI. |
|
class PHONE : HitResult
The type used if the URI is prepended with 'tel:'. |
|
class UNKNOWN : HitResult
Default type if we're unable to match the type to anything. It may or may not have a src. |
|
class VIDEO : HitResult
If the HTML element was of type 'HTMLVideoElement'. |