public static enum Wedge.IntentDeliveryMode extends java.lang.Enum<Wedge.IntentDeliveryMode>
列挙型定数と説明 |
---|
BROADCAST_INTENT
ブロードキャストインテント Broadcast intent |
START_ACTIVITY
Start Activityで送信 Send with Start Activity |
START_SERVICE
Start Serviceで送信 Send with Start Service |
修飾子とタイプ | メソッドと説明 |
---|---|
int |
getId() |
static Wedge.IntentDeliveryMode |
valueOf(int id) |
static Wedge.IntentDeliveryMode |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static Wedge.IntentDeliveryMode[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Wedge.IntentDeliveryMode START_ACTIVITY
public static final Wedge.IntentDeliveryMode START_SERVICE
public static final Wedge.IntentDeliveryMode BROADCAST_INTENT
public static Wedge.IntentDeliveryMode[] values()
for(Wedge.IntentDeliveryMode c: Wedge.IntentDeliveryMode.values()) System.out.println(c);
public static Wedge.IntentDeliveryMode valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合public static Wedge.IntentDeliveryMode valueOf(int id)
public int getId()