public static enum AssociationChangeNotification.AssocChangeEvent extends Enum<AssociationChangeNotification.AssocChangeEvent>
列挙型定数と説明 |
---|
CANT_START
アソシエーションの設定に失敗しました。
|
COMM_LOST
アソシエーションが失敗しました。
|
COMM_UP
新しいアソシエーションの準備ができ、このピアとのデータ交換が可能です。
|
RESTART
SCTP で、ピアが再起動されたことが検出されました。
|
SHUTDOWN
アソシエーションは正常に閉じられました。
|
修飾子と型 | メソッドと説明 |
---|---|
static AssociationChangeNotification.AssocChangeEvent |
valueOf(String name)
指定された名前を持つ、この型の列挙型定数を返します。
|
static AssociationChangeNotification.AssocChangeEvent[] |
values()
この列挙型の定数を含む配列を、宣言されている順序で返します。
|
public static final AssociationChangeNotification.AssocChangeEvent COMM_UP
public static final AssociationChangeNotification.AssocChangeEvent COMM_LOST
public static final AssociationChangeNotification.AssocChangeEvent RESTART
public static final AssociationChangeNotification.AssocChangeEvent SHUTDOWN
public static final AssociationChangeNotification.AssocChangeEvent CANT_START
SctpMultiChannel
で送信された場合、未処理のメッセージに対して SCTP 送信失敗通知がこの通知のあとに続きます。public static AssociationChangeNotification.AssocChangeEvent[] values()
for (AssociationChangeNotification.AssocChangeEvent c : AssociationChangeNotification.AssocChangeEvent.values()) System.out.println(c);
public static AssociationChangeNotification.AssocChangeEvent valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- 指定された名前を持つ定数をこの列挙型が持っていない場合NullPointerException
- 引数が null の場合
Copyright © 2009, 2013, Oracle and/or its affiliates. All rights reserved.