org.seasar.doma.jdbc
クラス ResultMappingException

java.lang.Object
  上位を拡張 java.lang.Throwable
      上位を拡張 java.lang.Exception
          上位を拡張 java.lang.RuntimeException
              上位を拡張 org.seasar.doma.DomaException
                  上位を拡張 org.seasar.doma.jdbc.JdbcException
                      上位を拡張 org.seasar.doma.jdbc.ResultMappingException
すべての実装されたインタフェース:
Serializable

public class ResultMappingException
extends JdbcException

エンティティのすべてのプロパティに対し、結果セットのカラムがマッピングされない場合にスローされます。

導入されたバージョン:
1.34.0
作成者:
taedium
関連項目:
直列化された形式

フィールドの概要
protected  String entityClassName
          マッピング対象のエンティティクラスの名前
protected  List<String> expectedColumnNames
          期待されるカラムの名前のリスト
protected  String formattedSql
          フォーマット済みSQL、バッチ処理時にスローされた場合 null
protected  SqlKind kind
          SQLの種別
protected  String rawSql
          未加工SQL
protected  String sqlFilePath
          SQLファイルのパス
protected  List<String> unmappedPropertyNames
          マッピングされなかったプロパティの名前のリスト
 
クラス org.seasar.doma.DomaException から継承されたフィールド
args, messageResource
 
コンストラクタの概要
ResultMappingException(ExceptionSqlLogType logType, String entityClassName, List<String> unmappedPropertyNames, List<String> expectedColumnNames, SqlKind kind, String rawSql, String formattedSql, String sqlFilePath)
          インスタンスを構築します。
 
メソッドの概要
 String getEntityClassName()
          マッピング対象のエンティティクラスの名前を返します。
 List<String> getExpectedColumnNames()
          期待されるカラムの名前のリストを返します。
 String getFormattedSql()
          フォーマット済みSQLを返します。
 SqlKind getKind()
          SQLの種別を返します。
 String getRawSql()
          未加工SQLを返します。
 String getSqlFilePath()
          SQLファイルのパスを返します。
 List<String> getUnmappedPropertyNames()
          マッピングされなかったプロパティの名前のリストを返します。
 
クラス org.seasar.doma.jdbc.JdbcException から継承されたメソッド
choiceSql
 
クラス org.seasar.doma.DomaException から継承されたメソッド
getArgs, getMessageResource
 
クラス java.lang.Throwable から継承されたメソッド
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

entityClassName

protected final String entityClassName
マッピング対象のエンティティクラスの名前


unmappedPropertyNames

protected final List<String> unmappedPropertyNames
マッピングされなかったプロパティの名前のリスト


expectedColumnNames

protected final List<String> expectedColumnNames
期待されるカラムの名前のリスト


kind

protected final SqlKind kind
SQLの種別


rawSql

protected final String rawSql
未加工SQL


formattedSql

protected final String formattedSql
フォーマット済みSQL、バッチ処理時にスローされた場合 null


sqlFilePath

protected final String sqlFilePath
SQLファイルのパス

コンストラクタの詳細

ResultMappingException

public ResultMappingException(ExceptionSqlLogType logType,
                              String entityClassName,
                              List<String> unmappedPropertyNames,
                              List<String> expectedColumnNames,
                              SqlKind kind,
                              String rawSql,
                              String formattedSql,
                              String sqlFilePath)
インスタンスを構築します。

パラメータ:
logType - ログタイプ
entityClassName - マッピング対象のエンティティクラスの名前
unmappedPropertyNames - マッピングされなかったプロパティの名前のリスト
expectedColumnNames - 期待されるカラムの名前のリスト
kind - SQLの種別
rawSql - 未加工SQL
formattedSql - フォーマット済みSQL
sqlFilePath - SQLファイルのパス
メソッドの詳細

getEntityClassName

public String getEntityClassName()
マッピング対象のエンティティクラスの名前を返します。

戻り値:
マッピング対象のエンティティクラスの名前

getUnmappedPropertyNames

public List<String> getUnmappedPropertyNames()
マッピングされなかったプロパティの名前のリストを返します。

戻り値:
マッピングされなかったプロパティの名前のリスト

getExpectedColumnNames

public List<String> getExpectedColumnNames()
期待されるカラムの名前のリストを返します。

戻り値:
期待されるカラムの名前のリスト

getKind

public SqlKind getKind()
SQLの種別を返します。

戻り値:
SQLの種別

getRawSql

public String getRawSql()
未加工SQLを返します。

戻り値:
未加工SQL

getFormattedSql

public String getFormattedSql()
フォーマット済みSQLを返します。

戻り値:
フォーマット済みSQL、存在しない場合 null

getSqlFilePath

public String getSqlFilePath()
SQLファイルのパスを返します。

戻り値:
SQLファイルのパス、SQLが自動生成された場合 null


Copyright © 2009-2014 The Seasar Foundation. All Rights Reserved.