
io.github.astrapi69.test.objects.CompanyGroup Maven / Gradle / Ivy
/**
* The MIT License
*
* Copyright (C) 2015 Asterios Raptis
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package io.github.astrapi69.test.objects;
import java.util.Set;
public class CompanyGroup
{
private Factory parent;
private Set children;
public CompanyGroup(Factory parent, Set children)
{
this.parent = parent;
this.children = children;
}
public CompanyGroup()
{
}
protected CompanyGroup(CompanyGroupBuilder, ?> b)
{
this.parent = b.parent;
this.children = b.children;
}
public static CompanyGroupBuilder, ?> builder()
{
return new CompanyGroupBuilderImpl();
}
public Factory getParent()
{
return this.parent;
}
public void setParent(Factory parent)
{
this.parent = parent;
}
public Set getChildren()
{
return this.children;
}
public void setChildren(Set children)
{
this.children = children;
}
public boolean equals(final Object o)
{
if (o == this)
return true;
if (!(o instanceof CompanyGroup))
return false;
final CompanyGroup other = (CompanyGroup)o;
if (!other.canEqual(this))
return false;
final Object this$parent = this.getParent();
final Object other$parent = other.getParent();
if (this$parent == null ? other$parent != null : !this$parent.equals(other$parent))
return false;
final Object this$children = this.getChildren();
final Object other$children = other.getChildren();
return this$children == null
? other$children == null
: this$children.equals(other$children);
}
protected boolean canEqual(final Object other)
{
return other instanceof CompanyGroup;
}
public int hashCode()
{
final int PRIME = 59;
int result = 1;
final Object $parent = this.getParent();
result = result * PRIME + ($parent == null ? 43 : $parent.hashCode());
final Object $children = this.getChildren();
result = result * PRIME + ($children == null ? 43 : $children.hashCode());
return result;
}
public String toString()
{
return "CompanyGroup(parent=" + this.getParent() + ", children=" + this.getChildren() + ")";
}
public CompanyGroupBuilder, ?> toBuilder()
{
return new CompanyGroupBuilderImpl().$fillValuesFrom(this);
}
public static abstract class CompanyGroupBuilder>
{
private Factory parent;
private Set children;
private static void $fillValuesFromInstanceIntoBuilder(CompanyGroup instance,
CompanyGroupBuilder, ?> b)
{
b.parent(instance.parent);
b.children(instance.children);
}
public B parent(Factory parent)
{
this.parent = parent;
return self();
}
public B children(Set children)
{
this.children = children;
return self();
}
protected B $fillValuesFrom(C instance)
{
CompanyGroupBuilder.$fillValuesFromInstanceIntoBuilder(instance, this);
return self();
}
protected abstract B self();
public abstract C build();
public String toString()
{
return "CompanyGroup.CompanyGroupBuilder(parent=" + this.parent + ", children="
+ this.children + ")";
}
}
private static final class CompanyGroupBuilderImpl
extends
CompanyGroupBuilder
{
private CompanyGroupBuilderImpl()
{
}
protected CompanyGroupBuilderImpl self()
{
return this;
}
public CompanyGroup build()
{
return new CompanyGroup(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy