to top
Datalogic APIs
public final enum

IntentDeliveryMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.datalogic.decode.configuration.IntentDeliveryMode

Class Overview

IntentDeliveryMode is an enumeration defining the method by which the intent is delivered. The type is one of:

START_ACTIVITY Intent delivered via StartActivity
START_SERVICE Intent delivered via StartService
BROADCAST Broadcast Intent

Summary

Enum Values
IntentDeliveryMode  BROADCAST  Sends an Intent using broadcastIntent to invoke registered broadcast receivers  
IntentDeliveryMode  START_ACTIVITY  Sends an Intent using startActivity to invoke an Activity  
IntentDeliveryMode  START_SERVICE  Sends an Intent using startService to initiate operation of a Service  
Public Methods
static IntentDeliveryMode valueOf(String name)
final static IntentDeliveryMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final IntentDeliveryMode BROADCAST

Added in revision 1

Sends an Intent using broadcastIntent to invoke registered broadcast receivers

public static final IntentDeliveryMode START_ACTIVITY

Added in revision 1

Sends an Intent using startActivity to invoke an Activity

public static final IntentDeliveryMode START_SERVICE

Added in revision 1

Sends an Intent using startService to initiate operation of a Service

Public Methods

public static IntentDeliveryMode valueOf (String name)

Added in revision 1

public static final IntentDeliveryMode[] values ()

Added in revision 1