ts.query
列挙型 QueryTransaction.State

java.lang.Object
  上位を拡張 java.lang.Enum<QueryTransaction.State>
      上位を拡張 ts.query.QueryTransaction.State
すべての実装されたインタフェース:
java.io.Serializable, java.lang.Comparable<QueryTransaction.State>
含まれているインタフェース:
QueryTransaction

public static enum QueryTransaction.State
extends java.lang.Enum<QueryTransaction.State>

トランザクションの状態を示す列挙型。


列挙型定数の概要
Begined
          トランザクションが開始されたという状態を示す列挙型の値。
Begining
          トランザクションが開始処理中という状態を示す列挙型の値。
Committed
          トランザクションが確定されたという状態を示す列挙型の値。
Committing
          トランザクションが確定処理中という状態を示す列挙型の値。
Created
          トランザクションが作成されたという状態を示す列挙型の値。
Ended
          トランザクションが終了されたという状態を示す列挙型の値。
Ending
          トランザクションが終了処理中という状態を示す列挙型の値。
Rollbacked
          トランザクションが取消されたという状態を示す列挙型の値。
Rollbacking
          トランザクションが取消処理中という状態を示す列挙型の値。
 
メソッドの概要
static QueryTransaction.State valueOf(java.lang.String name)
          指定した名前を持つこの型の列挙型定数を返します。
static QueryTransaction.State[] values()
          この列挙型の定数を含む配列を宣言されている順序で返します。
 
クラス java.lang.Enum から継承されたメソッド
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
クラス java.lang.Object から継承されたメソッド
getClass, notify, notifyAll, wait, wait, wait
 

列挙型定数の詳細

Created

public static final QueryTransaction.State Created
トランザクションが作成されたという状態を示す列挙型の値。


Begining

public static final QueryTransaction.State Begining
トランザクションが開始処理中という状態を示す列挙型の値。


Begined

public static final QueryTransaction.State Begined
トランザクションが開始されたという状態を示す列挙型の値。


Committing

public static final QueryTransaction.State Committing
トランザクションが確定処理中という状態を示す列挙型の値。


Committed

public static final QueryTransaction.State Committed
トランザクションが確定されたという状態を示す列挙型の値。


Rollbacking

public static final QueryTransaction.State Rollbacking
トランザクションが取消処理中という状態を示す列挙型の値。


Rollbacked

public static final QueryTransaction.State Rollbacked
トランザクションが取消されたという状態を示す列挙型の値。


Ending

public static final QueryTransaction.State Ending
トランザクションが終了処理中という状態を示す列挙型の値。


Ended

public static final QueryTransaction.State Ended
トランザクションが終了されたという状態を示す列挙型の値。

メソッドの詳細

values

public static QueryTransaction.State[] values()
この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために使用できます:
for (QueryTransaction.State c : QueryTransaction.State.values())
    System.out.println(c);

戻り値:
この列挙型の定数を宣言されている順序で含む配列

valueOf

public static QueryTransaction.State valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と厳密に 一致している必要があります (余分な空白文字を含めることはできません)。

パラメータ:
name - 返される列挙型定数の名前
戻り値:
指定された名前を持つ列挙型定数
例外:
java.lang.IllegalArgumentException - 指定された名前を持つ定数を この列挙型が持っていない場合
java.lang.NullPointerException - 引数が null の場合


Copyright (C) SATOH Takayuki All Rights Reserved.