All Downloads are FREE. Search and download functionalities are using the official Maven repository.

arp.repository.copy.FloatArrayFieldCopier Maven / Gradle / Ivy

The newest version!
package arp.repository.copy;

import java.lang.reflect.Field;

import arp.util.Unsafe;

public class FloatArrayFieldCopier extends BaseFieldCopier {

	public FloatArrayFieldCopier(Field field) {
		super(field);
	}

	@Override
	public void copyField(Object fromEntity, Object toEntity) {
		float[] array = (float[]) Unsafe.getObjectFieldOfObject(fromEntity, fieldOffset);
		Unsafe.setObjectFieldOfObject(toEntity, fieldOffset, array.clone());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy