|
|||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object org.seasar.extension.dxo.converter.impl.AbstractConverter org.seasar.extension.dxo.converter.impl.ArrayConverter
任意のオブジェクトを配列への変換を行うコンバータです。
変換は次のように行われます。
コレクション
なら、コレクションのサイズと同じ長さで、各要素を変換した配列を変換先とします。
フィールドの概要 |
クラス org.seasar.extension.dxo.converter.impl.AbstractConverter から継承したフィールド |
shallowCopy |
コンストラクタの概要 | |
ArrayConverter()
|
メソッドの概要 | |
java.lang.Object |
convert(java.lang.Object source,
java.lang.Class destClass,
ConversionContext context)
source をdestClass に変換したオブジェクトを返します。 |
protected java.lang.Object |
fromArrayToArray(java.lang.Class componentType,
java.lang.Object source,
ConversionContext context)
配列を配列に変換して返します。 |
protected java.lang.Object |
fromCollectionToArray(java.lang.Class componentType,
java.util.Collection source,
ConversionContext context)
コレクションを配列に変換して返します。 |
java.lang.Class |
getDestClass()
このコンバータがサポートしている変換先のクラスを返します。 |
java.lang.Class[] |
getSourceClasses()
このコンバータがサポートしている変換元のクラスを配列で返します。 |
クラス org.seasar.extension.dxo.converter.impl.AbstractConverter から継承したメソッド |
convert, getEnumName, getEnumOrdinal, isEnum, setShallowCopy |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
public ArrayConverter()
メソッドの詳細 |
public java.lang.Class[] getSourceClasses()
Converter
の記述: 最低でも1以上の長さを持つ配列を返します。
public java.lang.Class getDestClass()
Converter
の記述:
public java.lang.Object convert(java.lang.Object source, java.lang.Class destClass, ConversionContext context)
Converter
の記述: source
をdestClass
に変換したオブジェクトを返します。
source
- 変換元のオブジェクトdestClass
- 変換先のクラスcontext
- 変換コンテキスト
destClass
のインスタンスです。protected java.lang.Object fromArrayToArray(java.lang.Class componentType, java.lang.Object source, ConversionContext context)
componentType
- 変換先配列の要素型source
- 変換元の配列context
- 変換コンテキスト
protected java.lang.Object fromCollectionToArray(java.lang.Class componentType, java.util.Collection source, ConversionContext context)
componentType
- 変換先配列の要素型source
- 変換元のコレクションcontext
- 変換コンテキスト
|
|||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |