Skip to content

This class is used to copy values from One object to another object

Notifications You must be signed in to change notification settings

pervez8ktt/SetEntity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SetEntity

	FromClass fromClass = new FromClass();
	
	fromClass.setId(1);
	fromClass.setName("Pervez");
	fromClass.setDob(new Date());
	
	
	
	ToClass toClass = SetEntityByModel.setFields(fromClass, ToClass.class);
	
	
	System.out.println(toClass.getId());
	System.out.println(toClass.getName());
	System.out.println(toClass.getDob());

About

This class is used to copy values from One object to another object

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages