spring-batch Person 源码
spring-batch Person 代码
文件路径:/spring-batch-samples/src/main/java/org/springframework/batch/sample/domain/person/Person.java
/*
* Copyright 2006-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.sample.domain.person;
import java.util.ArrayList;
import java.util.List;
import org.springframework.batch.sample.domain.order.Address;
public class Person {
private String title = "";
private String firstName = "";
private String last_name = "";
private int age = 0;
private Address address = new Address();
private List<Child> children = new ArrayList<>();
public Person() {
children.add(new Child());
children.add(new Child());
}
/**
* @return the address
*/
public Address getAddress() {
return address;
}
/**
* @param address the address to set
*/
public void setAddress(Address address) {
this.address = address;
}
/**
* @return the age
*/
public int getAge() {
return age;
}
/**
* @param age the age to set
*/
public void setAge(int age) {
this.age = age;
}
/**
* @return the firstName
*/
public String getFirstName() {
return firstName;
}
/**
* @param firstName the firstName to set
*/
public void setFirstName(String firstName) {
this.firstName = firstName;
}
/**
* @return the children
*/
public List<Child> getChildren() {
return children;
}
/**
* @param children the children to set
*/
public void setChildren(List<Child> children) {
this.children = children;
}
/**
* Intentionally non-standard method name for testing purposes
* @return the last_name
*/
public String getLast_name() {
return last_name;
}
/**
* Intentionally non-standard method name for testing purposes
* @param last_name the last_name to set
*/
public void setLast_name(String last_name) {
this.last_name = last_name;
}
/**
* @return the person_title
*/
public String getTitle() {
return title;
}
/**
* @param title the person title to set
*/
public void setTitle(String title) {
this.title = title;
}
@Override
public String toString() {
return "Person [address=" + address + ", age=" + age + ", children=" + children + ", firstName=" + firstName
+ ", last_name=" + last_name + ", title=" + title + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((address == null) ? 0 : address.hashCode());
result = prime * result + age;
result = prime * result + ((children == null) ? 0 : children.hashCode());
result = prime * result + ((firstName == null) ? 0 : firstName.hashCode());
result = prime * result + ((last_name == null) ? 0 : last_name.hashCode());
result = prime * result + ((title == null) ? 0 : title.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
Person other = (Person) obj;
if (address == null) {
if (other.address != null) {
return false;
}
}
else if (!address.equals(other.address)) {
return false;
}
if (age != other.age) {
return false;
}
if (children == null) {
if (other.children != null) {
return false;
}
}
else if (!children.equals(other.children)) {
return false;
}
if (firstName == null) {
if (other.firstName != null) {
return false;
}
}
else if (!firstName.equals(other.firstName)) {
return false;
}
if (last_name == null) {
if (other.last_name != null) {
return false;
}
}
else if (!last_name.equals(other.last_name)) {
return false;
}
if (title == null) {
if (other.title != null) {
return false;
}
}
else if (!title.equals(other.title)) {
return false;
}
return true;
}
}
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦