パッケージ org.iplass.mtp.command

列挙クラス RequestContextWrapper.Mode

java.lang.Object
java.lang.Enum<RequestContextWrapper.Mode>
org.iplass.mtp.command.RequestContextWrapper.Mode
すべての実装されたインタフェース:
Serializable, Comparable<RequestContextWrapper.Mode>, Constable
含まれているクラス:
RequestContextWrapper

public static enum RequestContextWrapper.Mode extends Enum<RequestContextWrapper.Mode>
ラップするRequestContextの扱い方のモードをあらわします。 非同期処理に渡すRequestContextを生成する場合は、COPYモードを利用してください。
  • 列挙型定数の詳細

    • SHARED

      public static final RequestContextWrapper.Mode SHARED
      attributeMapはラップされるコンテキストと共有されます 。
    • COPY

      public static final RequestContextWrapper.Mode COPY
      attributeMapはインスタンス生成時点のスナップショット(シャローコピー)となります。
  • メソッドの詳細

    • values

      public static RequestContextWrapper.Mode[] values()
      この列挙クラスの定数を含む配列を宣言されている順序で 返します。
      戻り値:
      この列挙クラスの定数を宣言されている順序で含む配列
    • valueOf

      public static RequestContextWrapper.Mode valueOf(String name)
      このクラスの列挙型定数を指定した名前で返します。 文字列は、このクラスの列挙型定数の宣言に使用された識別子と正確に 一致する必要があります。(余分な空白文字は使用 できません。)
      パラメータ:
      name - 返される列挙型定数の名前。
      戻り値:
      指定した名前の列挙型定数
      例外:
      IllegalArgumentException - この列挙クラスに、指定した名前の定数がない場合
      NullPointerException - 引数がnullの場合