Uses of Class
nablarch.core.beans.CopyOptions
Packages that use CopyOptions
-
Uses of CopyOptions in nablarch.core.beans
Methods in nablarch.core.beans that return CopyOptionsModifier and TypeMethodDescriptionCopyOptions.Builder.build()CopyOptionsを構築する。static CopyOptionsCopyOptions.empty()空のCopyOptionsを取得する。static CopyOptionsCopyOptions.fromAnnotation(Class<?> clazz) CopyOptionアノテーションを読み取って構築されたCopyOptionsを取得する。CopyOptions.merge(CopyOptions other) 他のCopyOptionsをマージする。Methods in nablarch.core.beans with parameters of type CopyOptionsModifier and TypeMethodDescriptionstatic <T> voidBeanUtil.copy(Class<? extends T> beanClass, T bean, Map<String, ?> map, CopyOptions copyOptions) MapからBeanインスタンスへコピーを行う。 生成済みのインスタンスにコピーを行う点以外は、BeanUtil.createAndCopy(Class, Map, CopyOptions)と同じ動作である。static <SRC,DEST> DEST BeanUtil.copy(SRC srcBean, DEST destBean, CopyOptions copyOptions) BeanからBeanに値をコピーする。protected static <SRC,DEST> DEST BeanUtil.copyInner(SRC srcBean, DEST destBean, CopyOptions copyOptions) BeanからBeanに値をコピーする。static <T> TBeanUtil.createAndCopy(Class<T> beanClass, Object srcBean, CopyOptions copyOptions) Java Beansからプロパティをコピーして、別のBeanを作成する。static <T> TBeanUtil.createAndCopy(Class<T> beanClass, Map<String, ?> map, CopyOptions copyOptions) MapからBeanを生成する。BeanUtil.createMapAndCopy(SRC srcBean, CopyOptions copyOptions) BeanからMapにプロパティの値をコピーする。CopyOptions.merge(CopyOptions other) 他のCopyOptionsをマージする。